dolphindb 3.0.35 → 3.0.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs.d.ts CHANGED
@@ -8,15 +8,15 @@ export interface FunctionSignature {
8
8
  default?: string;
9
9
  }[];
10
10
  }
11
- export interface FunctionItem {
11
+ export interface Doc {
12
12
  /** 文档的公网链接 */
13
- href: string;
13
+ url: string;
14
14
  /** 部分函数存在多个签名,例如 append! 和 x.append!, eachPre 和 func:P 这两组,最好在分析阶段就处理好 */
15
15
  signatures: FunctionSignature[] | null;
16
16
  /** 文档内容 */
17
17
  markdown: string;
18
18
  }
19
- export type Docs = Record<string, FunctionItem>;
19
+ export type Docs = Record<string, Doc>;
20
20
  export declare class DocsAnalyser {
21
21
  /** 文档原始信息 */
22
22
  docs?: Docs;