mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-26 08:44:14 +08:00
6ff5b88ca7
Co-authored-by: hauntsaninja <>
12 lines
243 B
Python
12 lines
243 B
Python
from pipes import Template
|
|
from typing import Dict, List
|
|
|
|
table: Dict[str, Template]
|
|
t: Template
|
|
uncompress: Template
|
|
|
|
class error(Exception): ...
|
|
|
|
def toaiff(filename: str) -> str: ...
|
|
def _toaiff(filename: str, temps: List[str]) -> str: ...
|