Fix lint errors (#1087)

This commit is contained in:
filtered
2025-06-28 15:25:04 -07:00
committed by GitHub
parent bcaaa00770
commit 7378c858bd
2 changed files with 2 additions and 4 deletions

View File

@@ -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")
}

View File

@@ -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")
}