UNPKG

gcal-commander

Version:

A command-line interface for Google Calendar operations

7 lines (6 loc) 169 B
export interface IConfigStorage { exists(): Promise<boolean>; getConfigPath(): string; read(): Promise<string>; write(content: string): Promise<void>; }