UNPKG
datainout
Version:
latest (1.1.2-beta)
1.1.2-beta
1.1.1-beta
1.1.0-beta
1.0.0
Import and reports data
datainout
/
dist
/
common
/
error
/
ValidateError.d.cts
11 lines
(8 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
ValidateImportErrorOpts
}
from
'../types/error.type.cjs'
;
declare
class
ValidateImportError
extends
Error
{
address
?:
string
;
value
?:
any
;
keyField
:
string
;
constructor
(
opts
:
ValidateImportErrorOpts
); }
export
{
ValidateImportError
};