Coverage for backend/common/models/idaes/id_types.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2025-11-06 23:27 +0000

1from typing import NewType 

2 

3PropertyPackageId = NewType('PropertyPackageId', int) 

4UnitModelId = NewType('UnitModelId', int) 

5PortId = NewType('PortId', int) 

6ArcId = NewType('ArcId', int) 

7PropertyValueId = NewType("PropertyValueId", int)