UNPKG

@dosmond37/firebase-storage-cli

Version:

Upload anything, right from your command line.

19 lines (18 loc) 817 B
import { Command, flags } from '@oclif/command'; import UploadEvent from '../interfaces/upload-event'; export default class History extends Command { static description: string; static aliases: string[]; static flags: { view: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; delete: flags.IOptionFlag<string | undefined>; public: flags.IOptionFlag<string | undefined>; signed: flags.IOptionFlag<string | undefined>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; }; deleteFile(history: UploadEvent[], historyPath: string, filename: string): Promise<void>; copyToClipboard(link: string): Promise<void>; getPublicUrl(filename: string): Promise<void>; getSignedUrl(filename: string): Promise<void>; run(): Promise<void>; }