csv2gsheets
Version:
CLI tool to convert local CSV files into Google Sheets files in a designated Google Drive folder.
11 lines (10 loc) • 296 B
TypeScript
interface LoginCommandOptions {
readonly status?: boolean;
}
/**
* Authorize the user.
* If the option "status" is true, return the current user name
* or a message that the user is not logged in.
*/
export default function login(options?: LoginCommandOptions): Promise<void>;
export {};