UNPKG

@reliverse/rse-sdk

Version:

@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).

12 lines (11 loc) 242 B
export interface UploadedFile { name: string; data: Buffer; type: string; } export declare function uploadToUploadthing(files: UploadedFile[]): Promise<{ url: string; key: string; size: number; name: string; }[]>;