File: pad.pyi

package info (click to toggle)
python-av 14.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,664 kB
  • sloc: python: 4,712; sh: 175; ansic: 174; makefile: 123
file content (10 lines) | stat: -rw-r--r-- 195 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from .link import FilterLink

class FilterPad:
    is_output: bool
    name: str
    type: str

class FilterContextPad(FilterPad):
    link: FilterLink | None
    linked: FilterContextPad | None