12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
|
// Status Response Interface
|
||
|
export interface UploadStatusResponse {
|
||
|
status: "uploaded" | "uploading" | "not_found";
|
||
|
}
|
||
|
// Upload Response Interface
|
||
|
export interface UploadResponse {
|
||
|
cid: string;
|
||
|
}
|
||
|
export interface UploadLimitResponse {
|
||
|
limit: bigint;
|
||
|
}
|