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

13 lines
238 B
TypeScript

import { IMeta } from "@futureporn/types";
export interface IB2File {
id: number;
url: string;
key: string;
uploadId: string;
cdn_url: string;
}
export interface IB2FileResponse {
data: IB2File;
meta: IMeta;
}