4 lines
214 B
TypeScript
4 lines
214 B
TypeScript
import { IOptions } from '../types.js';
|
|
import * as TOML from 'smol-toml';
|
|
export declare const translateYAML: (src: string, dst: string, options: IOptions) => Promise<string | Record<string, TOML.TomlPrimitive>>;
|