UNPKG

@gulujs/toml

Version:

TOML parser and serializer

5 lines (4 loc) 356 B
import { IntegerSchema, Key } from '../schema.js'; import { StringifyValueOptions } from './stringify-value.js'; export declare function assertIsInteger(value: unknown, options: StringifyValueOptions, path: Array<Key | number>): void; export declare function serializeInteger(value: unknown, schema: IntegerSchema, options: StringifyValueOptions): string;