adr
Version:
轻量级架构记录工具 - Command-line tools for working with Architecture Decision Records
26 lines (25 loc) • 911 B
TypeScript
declare function getAllConfig(defaultValue: string): any;
declare function getConfig(key: string): any;
declare function getLanguage(): any;
declare function getPrefix(): any;
declare function getDigits(): any;
declare function getSavePath(): string;
declare function getCachePath(): string;
declare function getAssetsPath(): string;
declare function getEditor(): string;
declare function getForceNfc(): string;
declare function getDocExtension(): string;
declare let Config: {
getAllConfig: typeof getAllConfig;
getSavePath: typeof getSavePath;
getLanguage: typeof getLanguage;
getPrefix: typeof getPrefix;
getDigits: typeof getDigits;
getEditor: typeof getEditor;
getConfig: typeof getConfig;
getAssetsPath: typeof getAssetsPath;
getCachePath: typeof getCachePath;
getForceNfc: typeof getForceNfc;
getDocExtension: typeof getDocExtension;
};
export default Config;