You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently you have to sync types with some contants manually.
I would like to copy TypeScript's type typeof operator.
VALUE= (1, 2, 'a') # has type: Tuple[Literal[1], Literal[2] Literal['a']]ValueType=TypeOf[VALUE] # revealed type is the samedefprocess_value(arg: ValueType): ...
The text was updated successfully, but these errors were encountered:
Currently you have to sync types with some contants manually.
I would like to copy TypeScript's type
typeof
operator.The text was updated successfully, but these errors were encountered: