@guihz/trading-vue-editor-tes 0.0.43 → 0.0.45

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@ import "./style.css";
3
3
  import { Theme } from "@monaco-editor/react";
4
4
  interface IProps {
5
5
  theme?: Theme;
6
+ currentKey?: string;
6
7
  }
7
8
  declare const ReferenceManual: FC<IProps>;
8
9
  export default ReferenceManual;
@@ -27,7 +27,10 @@ export interface IContent {
27
27
  remarks?: string[];
28
28
  syntax?: (string | undefined)[];
29
29
  fields?: IItem[];
30
- seeAlso?: string[];
30
+ seeAlso?: ({
31
+ name: string;
32
+ link: string;
33
+ } | undefined)[];
31
34
  type?: string;
32
35
  originalExample?: string;
33
36
  }