libportal/src/responses/files.ts

12 lines
259 B
TypeScript
Raw Normal View History

2023-06-15 05:34:42 +00:00
// Status Response Interface
export interface UploadStatusResponse {
status: "uploaded" | "uploading" | "not_found";
}
// Upload Response Interface
export interface UploadResponse {
cid: string;
}
export interface UploadLimitResponse {
limit: bigint;
}