UNPKG

889 BTypeScriptView Raw
1import { IGetNodeListResponseData, IGetNodeListReqParams, IGetNodeDetailReqParams, IGetNodeDetailResponseData, ISearchNodeListReqParams, ISearchNodeListResponseData } from './interface';
2import { Vika } from './apitable';
3export declare class NodeManager {
4 apitable: Vika;
5 constructor(apitable: Vika);
6 /**
7 * Get the list of root nodes of the specified space stations.
8 * @param param0
9 */
10 list<T = IGetNodeListResponseData>(params: IGetNodeListReqParams): Promise<import("./interface").IHttpResponse<T>>;
11 /**
12 * Get information about the specified node.
13 */
14 get<T = IGetNodeDetailResponseData>(params: IGetNodeDetailReqParams): Promise<import("./interface").IHttpResponse<T>>;
15 /**
16 * Search Nodes.
17 */
18 search<T = ISearchNodeListResponseData>(params: ISearchNodeListReqParams): Promise<import("./interface").IHttpResponse<T>>;
19}