UNPKG

projen

Version:

CDK for software projects

17 lines (16 loc) 518 B
import type { IResolver } from "./file"; import type { ObjectFileOptions } from "./object-file"; import { ObjectFile } from "./object-file"; import type { Project } from "./project"; /** * Options for `IniFile`. */ export interface IniFileOptions extends ObjectFileOptions { } /** * Represents an INI file. */ export declare class IniFile extends ObjectFile { constructor(project: Project, filePath: string, options: IniFileOptions); protected synthesizeContent(resolver: IResolver): string | undefined; }