UNPKG

gcal-commander

Version:

A command-line interface for Google Calendar operations

27 lines (26 loc) 673 B
/** * Centralized path management for gcal-commander application files */ export declare class AppPaths { private static readonly APP_DIR; /** * Get the application directory path */ static getAppDir(): string; /** * Get the path to the application configuration file */ static getConfigPath(): string; /** * Get the path to the Google OAuth credentials file */ static getCredentialsPath(): string; /** * Get the path to the Google OAuth token file */ static getTokenPath(): string; /** * Get and validate the application directory path */ private static getValidatedAppDir; }