projen
Version:
CDK for software projects
14 lines (13 loc) • 499 B
TypeScript
import { IConstruct } from "constructs";
import { TomlFile } from "../toml";
import { PyprojectToml } from "./pyproject-toml";
import { IResolver } from "../file";
/**
* Represents configuration of a pyproject.toml file
*
* @see https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
*/
export declare class PyprojectTomlFile extends TomlFile {
constructor(scope: IConstruct, config: PyprojectToml);
protected synthesizeContent(resolver: IResolver): string | undefined;
}