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) 355 B
import * as p_di from 'pareto-core/interface/schema'; export declare namespace Lines_ { namespace L { type text = string; type indentation = number; } type L = { readonly 'text': L.text; readonly 'indentation': L.indentation; }; } export type Lines_ = p_di.List<Lines_.L>; export type { Lines_ as Lines, };