mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-12 11:39:33 +02:00
12 lines
193 B
Python
12 lines
193 B
Python
try:
|
|
from typing import TypedDict
|
|
except ImportError:
|
|
TypedDict = dict
|
|
|
|
|
|
class ListedFont(TypedDict):
|
|
family: str
|
|
full_name: str
|
|
postscript_name: str
|
|
is_monospace: bool
|