mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-12 22:28:37 +00:00
19 lines
267 B
TypeScript
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[];
|
|
}
|
|
*/
|