@gulujs/toml
Version:
TOML parser and serializer
5 lines (4 loc) • 349 B
TypeScript
import { FloatSchema, Key } from '../schema.js';
import { StringifyValueOptions } from './stringify-value.js';
export declare function assertIsFloat(value: unknown, options: StringifyValueOptions, path: Array<Key | number>): void;
export declare function serializeFloat(value: unknown, _schema: FloatSchema, options: StringifyValueOptions): string;