File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- import { Link } from './link'
1
+ import { UnresolvedLink } from './link'
2
2
import { LocaleCode } from './locale'
3
3
4
4
type ISODateString = string
@@ -22,8 +22,8 @@ export interface ConceptScheme<Locales extends LocaleCode> {
22
22
[ locale in Locales ] : string
23
23
}
24
24
| null
25
- topConcepts : Link < 'TaxonomyConcept' > [ ]
26
- concepts : Link < 'TaxonomyConcept' > [ ]
25
+ topConcepts : UnresolvedLink < 'TaxonomyConcept' > [ ]
26
+ concepts : UnresolvedLink < 'TaxonomyConcept' > [ ]
27
27
totalConcepts : number
28
28
}
29
29
Original file line number Diff line number Diff line change 1
- import { Link } from './link'
1
+ import { UnresolvedLink } from './link'
2
2
import { LocaleCode } from './locale'
3
3
4
4
type ISODateString = string
@@ -59,8 +59,8 @@ export interface Concept<Locales extends LocaleCode> {
59
59
}
60
60
| null
61
61
notations ?: string [ ]
62
- broader ?: Link < 'TaxonomyConcept' > [ ]
63
- related ?: Link < 'TaxonomyConcept' > [ ]
62
+ broader ?: UnresolvedLink < 'TaxonomyConcept' > [ ]
63
+ related ?: UnresolvedLink < 'TaxonomyConcept' > [ ]
64
64
}
65
65
66
66
export type ConceptCollection < Locale extends LocaleCode > = {
You can’t perform that action at this time.
0 commit comments