fp/services/next/app/lib/b2File.ts

13 lines
238 B
TypeScript
Raw Normal View History

2024-07-15 16:07:04 +00:00
import { IMeta } from "@futureporn/types";
2024-01-20 16:16:14 +00:00
export interface IB2File {
id: number;
2024-12-16 20:39:23 +00:00
url: string;
key: string;
uploadId: string;
cdn_url: string;
2024-01-20 16:16:14 +00:00
}
export interface IB2FileResponse {
data: IB2File;
meta: IMeta;
}