
* define new JS-type var classes * add docstring * get rid of dataclass definitions and export all new vars * order imports in the correct way * only hash once
10 lines
345 B
Python
10 lines
345 B
Python
"""Experimental Immutable-Based Var System."""
|
|
|
|
from .base import ArrayVar as ArrayVar
|
|
from .base import BooleanVar as BooleanVar
|
|
from .base import FunctionVar as FunctionVar
|
|
from .base import ImmutableVar as ImmutableVar
|
|
from .base import NumberVar as NumberVar
|
|
from .base import ObjectVar as ObjectVar
|
|
from .base import StringVar as StringVar
|