UNPKG

projen

Version:

CDK for software projects

16 lines (15 loc) 480 B
import { IConstruct } from "constructs"; import { IResolver } from "./file"; import { ObjectFile, ObjectFileOptions } from "./object-file"; /** * Options for `TomlFile`. */ export interface TomlFileOptions extends ObjectFileOptions { } /** * Represents a TOML file. */ export declare class TomlFile extends ObjectFile { constructor(scope: IConstruct, filePath: string, options: TomlFileOptions); protected synthesizeContent(resolver: IResolver): string | undefined; }