UNPKG

tlo

Version:

Reader of binary serialized Type Language Schema

6 lines (5 loc) 301 B
/// <reference types="node" /> import { TlConfig } from './tl_config'; declare const read_tl_config: (data: Buffer | null) => TlConfig; declare const read_tl_config_from_file: (file_name: string, callback: (config: TlConfig) => void) => void; export { read_tl_config, read_tl_config_from_file };