@guihz/trading-vue-editor-tes 0.0.46 → 0.0.47

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@ import { IKeyObjectValue } from "../../editor/type";
3
3
  interface IProps {
4
4
  group: IKeyObjectValue | null;
5
5
  itemKey: string;
6
+ currentIndex: number;
6
7
  onItemClick: (key: string) => void;
7
8
  }
8
9
  declare const ContentItem: FC<IProps>;
@@ -4,6 +4,7 @@ import { Theme } from "@monaco-editor/react";
4
4
  interface IProps {
5
5
  theme?: Theme;
6
6
  currentKey?: string;
7
+ currentIndex?: number;
7
8
  }
8
9
  declare const ReferenceManual: FC<IProps>;
9
10
  export default ReferenceManual;