trapi
Version:
The main package and contains bundled functionality of all other package and a CLI to interact with them.
16 lines • 489 B
TypeScript
import { Config } from "../type";
/**
* Return parsed configuration file from given file location.
*
* @param workingDir
* @param fileName
*/
export declare function getConfig(workingDir: string, fileName?: string): Promise<Config>;
/**
* Load raw configuration file from given file location.
*
* @param workingDir
* @param fileName
*/
export declare function loadConfig(workingDir: string, fileName?: string): Promise<unknown>;
//# sourceMappingURL=index.d.ts.map