🎉
This commit is contained in:
11
src/nodes/types.d.ts
vendored
Normal file
11
src/nodes/types.d.ts
vendored
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user