strudel-docker/repl/src/parse.d.ts
2022-02-06 20:59:41 +01:00

19 lines
267 B
TypeScript

/*
TODO:
export interface Arguments {
alignment: string;
}
export interface ElementStub {
type_: string;
source_: string;
options_?: any;
}
export interface PatternStub {
type_: string; // pattern
arguments_: Arguments;
source_: ElementStub[];
}
*/