@appshell/config
Version:
Utility for producing a global appshell manifest for module federation micro-frontends
14 lines • 418 B
TypeScript
/**
* Reads the YAML file
* @param configPath to configuration file
* @returns a yaml object
*/
declare const load: <TSchema>(configPath: string) => TSchema;
/**
* Loads the YAML files specified by paths
* @param paths Paths to configurations to process
* @returns yaml objects
*/
export declare const loadAll: <TSchema>(...paths: string[]) => TSchema[];
export default load;
//# sourceMappingURL=load.d.ts.map