UNPKG

@reactionable/cli

Version:
11 lines (10 loc) 370 B
import { JsonMap } from '@iarna/toml'; import { StdFile } from './StdFile'; export declare class TomlFile extends StdFile { protected data?: JsonMap; protected parseContent(content: string): string; getContent(): string; appendContent(content: string): this; appendData(data: JsonMap): this; getData(property?: undefined): JsonMap | undefined; }