UNPKG

piclist

Version:

Modified PicGo core, A tool for picture uploading

21 lines (20 loc) 421 B
import { IPicGo } from '../../types'; export interface IMGTYPE { imgUrl?: string; type?: string; key?: string; id?: string; } export interface IV2FORMDATA { file: { value: Buffer; options: { filename: string; }; }; ssl: string; strategy_id?: string; album_id?: string; permission?: number; } export default function register(ctx: IPicGo): void;