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
The file types.d.ts uses export type to export some enums.
This prevents consumers from using those enums as values at runtime.
Shouldn't they be exported with export instead?
I found this happens with SortDirection and TokenSortKey due to this line:
The file
types.d.ts
usesexport type
to export some enums.This prevents consumers from using those enums as values at runtime.
Shouldn't they be exported with
export
instead?I found this happens with
SortDirection
andTokenSortKey
due to this line:zdk/src/types.ts
Lines 1 to 15 in e70abf9
The text was updated successfully, but these errors were encountered: