export function getDoc()

in src/drive.ts [63:69]


export function getDoc(fileId: string, auth: JWT): GaxiosPromise<string>  {
    return drive.files.export({
        auth,
        fileId: fileId,
        mimeType: 'text/plain'
    }) as GaxiosPromise<string>
}