mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 06:47:33 +00:00
Fix lint errors (#1087)
This commit is contained in:
@@ -7,7 +7,6 @@ import type { LLink } from "@/LLink"
|
||||
import type { Reroute } from "@/Reroute"
|
||||
import type { SubgraphInput } from "@/subgraph/SubgraphInput"
|
||||
import type { SubgraphInputNode } from "@/subgraph/SubgraphInputNode"
|
||||
import type { SubgraphOutput } from "@/subgraph/SubgraphOutput"
|
||||
import type { NodeLike } from "@/types/NodeLike"
|
||||
|
||||
import { LinkDirection } from "@/types/globalEnums"
|
||||
@@ -53,7 +52,7 @@ export class ToInputFromIoNodeLink implements RenderLink {
|
||||
events.dispatch("link-created", newLink)
|
||||
}
|
||||
|
||||
connectToSubgraphOutput(output: SubgraphOutput, events?: CustomEventTarget<LinkConnectorEventMap>): void {
|
||||
connectToSubgraphOutput(): void {
|
||||
throw new Error("Not implemented")
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@ import type { LinkConnectorEventMap } from "@/infrastructure/LinkConnectorEventM
|
||||
import type { INodeOutputSlot, LinkNetwork, Point } from "@/interfaces"
|
||||
import type { LGraphNode } from "@/LGraphNode"
|
||||
import type { Reroute } from "@/Reroute"
|
||||
import type { SubgraphInput } from "@/subgraph/SubgraphInput"
|
||||
import type { SubgraphOutput } from "@/subgraph/SubgraphOutput"
|
||||
import type { SubgraphOutputNode } from "@/subgraph/SubgraphOutputNode"
|
||||
import type { NodeLike } from "@/types/NodeLike"
|
||||
@@ -58,7 +57,7 @@ export class ToOutputFromIoNodeLink implements RenderLink {
|
||||
events.dispatch("link-created", newLink)
|
||||
}
|
||||
|
||||
connectToSubgraphInput(input: SubgraphInput, events?: CustomEventTarget<LinkConnectorEventMap>): void {
|
||||
connectToSubgraphInput(): void {
|
||||
throw new Error("Not implemented")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user