This commit is contained in:
2019-01-02 19:16:16 +01:00
commit e76aafc35a
34 changed files with 13596 additions and 0 deletions

11
src/nodes/types.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
export interface Output<T> {
readonly name: string
value: T,
connect(input: Input<T>):void
}
export interface Input<T> {
readonly name: string
value: T,
connect(output: Output<T>): void
}