UNPKG
@modelmap/a1-notation
Version:
latest (1.0.7)
1.0.7
Work with A1 notation like "A1" or "A1:B2"
github.com/FLighter7/a1-notation
FLighter7/a1-notation
@modelmap/a1-notation
/
dist
/
object
/
validation
/
A1Error.d.ts
13 lines
(12 loc)
•
313 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** *
@fileOverview
A1 notation errors */
export
default
class
A1Error
<T>
extends
Error
{
constructor
(
a1
:
string
);
constructor
(
col
:
number
);
constructor
(
row
:
number
);
constructor
(
unknown
?: T
);
wasString
(): A1Error<T>;
wasNumber
(): A1Error<T>;
wasUnknown
(): A1Error<T>; }