UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

20 lines (19 loc) 908 B
import { IGetNodeListResponseData, IGetNodeListReqParams, IGetNodeDetailReqParams, IGetNodeDetailResponseData, ISearchNodeListReqParams, ISearchNodeListResponseData } from './interface'; import { Vika } from './apitable'; export declare class NodeManager { apitable: Vika; constructor(apitable: Vika); /** * Get the list of root nodes of the specified space stations. * @param param0 */ list<T = IGetNodeListResponseData>(params: IGetNodeListReqParams): Promise<import("./interface").IHttpResponse<T>>; /** * Get information about the specified node. */ get<T = IGetNodeDetailResponseData>(params: IGetNodeDetailReqParams): Promise<import("./interface").IHttpResponse<T>>; /** * Search Nodes. */ search<T = ISearchNodeListResponseData>(params: ISearchNodeListReqParams): Promise<import("./interface").IHttpResponse<T>>; }