@shutootaki/gwm
Version:
git worktree manager CLI
10 lines • 364 B
TypeScript
import type { Config, RawParsedConfig } from './types.js';
/**
* TOML文字列をパースする
*/
export declare function parseTOML(content: string): RawParsedConfig;
/**
* パースされたTOMLデータを設定オブジェクトに変換
*/
export declare function parseConfigFromTOML(parsed: RawParsedConfig): Config;
//# sourceMappingURL=parser.d.ts.map