UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

5 lines (4 loc) 272 B
import { IParseResponse } from './types'; export declare function parseJson<T>(input?: string): IParseResponse<T>; export declare function parseYaml<T>(input?: string): IParseResponse<T>; export declare function parseYamlFile<T>(path: string): Promise<IParseResponse<T>>;