UNPKG
ts-flex-query
Version:
latest (1.7.0)
1.7.0
1.6.1
1.6.0
1.5.0
1.4.0
1.3.0
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
0.4.1
0.4.0
0.3.1
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
Flexible and type-safe data queries
github.com/black-comb/ts-flex-query
black-comb/ts-flex-query
ts-flex-query
/
tests
/
types
/
sample-type-2.d.ts
11 lines
(10 loc)
•
278 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
SampleType1
}
from
'./sample-type-1'
;
export
interface
SampleType2
{
fieldA
:
Date
;
fieldB
:
SampleType1
;
fieldC
:
SampleType1
[];
fieldD
:
SampleType2
[];
fieldE
:
SampleType2
|
undefined
;
fieldF
:
SampleType2
[] |
undefined
;
fieldG
:
SampleType1
; }