-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: stash state lib #2944
base: main
Are you sure you want to change the base?
WIP: stash state lib #2944
Conversation
|
/** | ||
* A Record is one row of the table. It includes both the key and the value. | ||
*/ | ||
type Record = { [field: string]: number | string | bigint | number[] | string[] | bigint[] }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also boolean
and boolean[]
and beware that Record
conflicts with the TS native Record
I think I've used Row
or TableRecord
in other areas
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good points!
7282820
to
ea3e66e
Compare
7282820
to
aba18e3
Compare
No description provided.