UNPKG

pareto-fountain-pen

Version:

A TypeScript library for easily generating source code files with proper indentation in the pareto programming style/language

14 lines (13 loc) 457 B
import * as p_ from 'pareto-core/implementation/transformer'; import type * as s_in from "../schema.js"; import type * as s_out from "../../serialized/schema.js"; declare namespace s_parameters { type Parameters = { 'indentation text': string; }; } declare namespace declarations { type Lines = p_.Transformer_With_Parameter<s_in.Lines, s_out.Lines, s_parameters.Parameters>; } export declare const Lines: declarations.Lines; export {};