UNPKG
ccs-mongodb-addon
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
ccs-mongodb-addon
/
src
/
interface.ts
12 lines
(9 loc)
•
218 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
interface
funcResponse<T =
any
> {
status
:
'OK'
|
'ERROR'
;
data
?: T;
error
?:
string
; }
export
const
authFields = [
'uri'
]
as
const
export
type
authFields =
typeof
authFields[
number
]