12 lines
374 B
TypeScript
12 lines
374 B
TypeScript
import Output from "../models/output";
|
|
import Config from "../models/config";
|
|
/**
|
|
Encode a config object into a JS config api
|
|
*/
|
|
declare function encodeConfig(output: Output, config: Config): {
|
|
values: any;
|
|
get: (key: any, defaultValue: any) => any;
|
|
set: (key: any, value: any) => any;
|
|
};
|
|
export default encodeConfig;
|
|
//# sourceMappingURL=encodeConfig.d.ts.map
|