mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 06:19:58 +00:00
13 lines
321 B
TypeScript
13 lines
321 B
TypeScript
import type { Positionable } from "@/interfaces"
|
|
import type { NodeId } from "@/LGraphNode"
|
|
|
|
import { SubgraphIONodeBase } from "./SubgraphIONodeBase"
|
|
|
|
export class SubgraphOutputNode extends SubgraphIONodeBase implements Positionable {
|
|
readonly id: NodeId = -20
|
|
|
|
get slots() {
|
|
return this.subgraph.outputs
|
|
}
|
|
}
|