/** * This file contains utility functions for manipulating the (parsed) contents * of TOML files. */ /** * Insert `s` into `array`, preserving order if `array` is sorted. */ export declare function sortPreservingInsert(array: string[], s: string): void; /** * Set `obj[key]` to `value`. * * If the iteration order of `obj`'s keys is sorted, this operation will * preserve that sorted order (by deleting and re-setting existing keys as * necessary). */ export declare function sortPreservingSet(obj: T, key: K, value: T[K]): void; //# sourceMappingURL=toml.d.ts.map