@gravityforms/gulp-tasks
Version:
Configurable Gulp tasks for use in Gravity Forms projects.
14 lines (13 loc) • 427 B
TypeScript
import { UtilsGDrive } from '..';
import * as utils from '../utils/utilsMethods';
/**
* Parameters for uploading a file to Google Drive.
*/
export interface Params$Upload {
localPath: string;
parentIdentifiers?: utils.Identifiers | string;
overwrite?: boolean;
update?: boolean;
sharedDriveId?: string;
}
export declare function upload(this: UtilsGDrive, params: Params$Upload | string): Promise<string>;