@buttercup/googledrive-client
Version:
Basic client for Google Drive
11 lines (10 loc) • 315 B
TypeScript
import { HotPatcher } from "hot-patcher";
export interface InternalPutFileContentsOptions {
contents: string;
id: string;
name: string;
parentID: string;
patcher: HotPatcher;
token: string;
}
export declare function putFileContents(options: InternalPutFileContentsOptions): Promise<string>;