aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/_types.py
blob: 2a486a15be86f19d02766c7a7fcdfa3d0dee40c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from typing import TypeVar

__all__ = [
	'ErrorIndex',
	'MessageIdWarnings',
	'NameId',
	'SourceFileEntry',
	'Iir',
	'IirKind'
]

ErrorIndex =  TypeVar('ErrorIndex', bound=int)
MessageIdWarnings = TypeVar('MessageIdWarnings', bound=int)
NameId = TypeVar('NameId', bound=int)
SourceFileEntry = TypeVar('SourceFileEntry', bound=int)

Iir = TypeVar('Iir', bound=int)
IirKind = TypeVar('IirKind', bound=int)