Interface Model¶
Interface Model
interface Model {
inputs: Output[];
outputs: Output[];
getName(): string;
input(nameOrId?): Output;
output(nameOrId?): Output;
}
Defined in addon.ts:44
Properties¶
inputs
inputs: Output[]
Defined in addon.ts:46
outputs
outputs: Output[]
Defined in addon.ts:45
Methods¶
getName
getName(): string
Returns string
Defined in addon.ts:49
input
input(nameOrId?): Output
Parameters
Optional
nameOrId: string|number
Returns Output
Defined in addon.ts:48
output
output(nameOrId?): Output
Parameters
Optional
nameOrId: string|number
Returns Output
Defined in addon.ts:47