UNPKG

honkit

Version:

HonKit is building beautiful books using Markdown.

12 lines 379 B
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) => unknown; set: (key: any, value: any) => void; }; export default encodeConfig; //# sourceMappingURL=encodeConfig.d.ts.map