Skip to content

Commit

Permalink
add general signature
Browse files Browse the repository at this point in the history
  • Loading branch information
Ichunjo committed Sep 24, 2024
1 parent 98c13b6 commit f286f69
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions vspreview/api/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,17 @@ def set_output(
...


# General
@overload
def set_output(
node: vs.RawNode | Iterable[vs.RawNode | Iterable[vs.RawNode | Iterable[vs.RawNode]]],
index: int | Sequence[int] = ..., name: str | bool | None = ...,
/,
**kwargs: Any
) -> None:
...


def set_output(
node: vs.RawNode | Iterable[vs.RawNode | Iterable[vs.RawNode | Iterable[vs.RawNode]]],
index_or_name: int | Sequence[int] | str | bool | None = None, name: str | bool | None = None,
Expand Down

0 comments on commit f286f69

Please sign in to comment.