File: common.py

package info (click to toggle)
pybrowsers 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 216 kB
  • sloc: python: 375; makefile: 32
file content (8 lines) | stat: -rw-r--r-- 132 bytes parent folder | download
1
2
3
4
5
6
7
8
from typing import TypedDict


class Browser(TypedDict):
    browser_type: str
    path: str
    display_name: str
    version: str