UNPKG

@nos-sdk/nos-node-sdk

Version:

NOS Node.js SDK实现了NOS对象操作接口,基于此SDK能方便快速地实现JavaScript应用程序来使用NOS的对象存储服务。

3 lines (2 loc) 160 B
export declare type Callback<T = any> = T extends void ? CallbackUnary : (e: Error, data: T) => void; export declare type CallbackUnary = (e: Error) => void;