Blame view

src/ui/vant-weapp/uploader/utils.d.ts 273 Bytes
simon committed
1 2 3 4 5 6 7 8 9 10 11 12
interface File {
    path: string;
    url: string;
    size: number;
    name: string;
    type: string;
    time: number;
    image: boolean;
}
export declare function isImageUrl(url: string): boolean;
export declare function isImageFile(item: File): boolean;
export {};