UNPKG
@nmscd/coordinate-conversion
Version:
latest (1.2.4)
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
Library to convert NMS coordinates
nmscd.com/Coordinate-Conversion/
NMSCD/Coordinate-Conversion
@nmscd/coordinate-conversion
/
dist
/
src
/
contracts
/
result.d.ts
13 lines
(12 loc)
•
299 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
interface
Result
{
isSuccess
:
boolean
;
errorMessage
:
string
; }
export
interface
ResultWithValue
<T>
extends
Result
{
value
: T; }
export
interface
ResultWithValueAndPagination
<T>
extends
ResultWithValue
<T> {
currentPage
:
number
;
totalPages
:
number
;
totalRows
:
number
; }