UNPKG

netlify-cms-core

Version:

Netlify CMS core application, see netlify-cms package for the main distribution.

14 lines (11 loc) 305 B
declare module 'tomlify-j0.4' { interface ToTomlOptions { replace?(key: string, value: unknown): string | false; sort?(a: string, b: string): number; } interface Tomlify { toToml(data: object, options?: ToTomlOptions): string; } const tomlify: Tomlify; export default tomlify; }