longcelot-sheet-db
Version:
Google Sheets-backed staging database adapter for Node.js with schema-first design
15 lines • 766 B
TypeScript
export declare const CONFIG_FILENAME = "lsdb.config.ts";
export declare const TOKENS_FILENAME = ".lsdb-tokens.json";
/**
* Resolves the CLI config file path, preferring `lsdb.config.ts` over the
* deprecated `sheet-db.config.ts`. Returns the canonical path if neither exists,
* so callers' existing "not found" handling continues to work unchanged.
*/
export declare function resolveConfigPath(cwd?: string): string;
/**
* Resolves the OAuth tokens file path, preferring `.lsdb-tokens.json` over the
* deprecated `.sheet-db-tokens.json`. Returns the canonical path if neither exists,
* so callers' existing existence checks continue to work unchanged.
*/
export declare function resolveTokensPath(cwd?: string): string;
//# sourceMappingURL=cliFiles.d.ts.map