2021-12-02 19:07:14 +00:00
|
|
|
"""Define typing helpers for SimpliSafe."""
|
2024-03-08 13:33:51 +00:00
|
|
|
|
2021-12-02 19:07:14 +00:00
|
|
|
from simplipy.system.v2 import SystemV2
|
|
|
|
from simplipy.system.v3 import SystemV3
|
|
|
|
|
2024-05-17 12:42:21 +00:00
|
|
|
type SystemType = SystemV2 | SystemV3
|