UNPKG
@chartshq/datamodel
Version:
latest (3.0.0)
3.0.0
An environment with `node`, `rustup` and `wasm-pack` set up.
@chartshq/datamodel
/
dist
/
esm
/
web
/
src
/
data
/
invalid
/
store.d.ts
9 lines
(8 loc)
•
255 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
default
class
InvalidStore
{
_defaultInvalids
:
Set
<
string
>;
constructor
(
);
setInvalids
(
invalidMap
:
string
[]):
void
;
getInvalids
():
Set
<
string
>;
unsetInvalids
(
invalidMap
:
string
[]):
void
;
isInvalid
(
value
:
string
):
boolean
; }