@solinker/nodes-baidu-wangpan
Version:
百度网盘是百度为用户精心打造的云存储产品,已覆盖主流PC和手机操作系统,包含Web版、Windows版、Mac版、Android版等不同版本,免费提供2T超大存储空间,用户将可以轻松将自己的文件上传到网盘上,并可跨端随时随地查看和分享。
12 lines (11 loc) • 641 B
TypeScript
import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription, type NodeExecutionWithMetadata, INodeTypeBaseDescription, INodePropertyOptions, ILoadOptionsFunctions } from 'n8n-workflow';
export declare class BaiduWangpanV1 implements INodeType {
description: INodeTypeDescription;
constructor(baseDescription: INodeTypeBaseDescription);
methods: {
loadOptions: {
queryFileList(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][] | NodeExecutionWithMetadata[][] | null>;
}