pareto-fountain-pen
Version:
A TypeScript library for easily generating source code files with proper indentation in the pareto programming style/language
20 lines (19 loc) • 699 B
TypeScript
import * as _pt from 'exupery-core-types';
export type _T_Dictionary<G_Source, T_D> = _pt.Dictionary<T_D>;
export type _T_List<G_Source, T_L> = _pt.Array<T_L>;
export type _T_State_Group<G_Source, T_SG> = T_SG;
export type Dictionary<G_Source, T_D> = _T_Dictionary<G_Source, T_D>;
export type List<G_Source, T_L> = _T_List<G_Source, T_L>;
export type State_Group<G_Source, T_SG> = _T_State_Group<G_Source, T_SG>;
export declare namespace _T_Dictionary {
type D<G_Source, T_D> = T_D;
}
export declare namespace _T_List {
type L<G_Source, T_L> = T_L;
}
export declare namespace Dictionary {
type D<G_Source, T_D> = T_D;
}
export declare namespace List {
type L<G_Source, T_L> = T_L;
}