UNPKG
cambridge-dictionary-api
Version:
latest (3.0.3)
3.0.3
3.0.0
2.0.5
2.0.0
1.2.0
1.1.5
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
API for Cambridge Dictionary
cambridge-dictionary-api
/
dist
/
interfaces
/
definition.d.ts
8 lines
(7 loc)
•
229 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
DictionaryLevel
,
DictionaryPartOfSpeech
}
from
"../enums"
;
export
interface
DictionaryDefinition
{
definition
:
string
;
partOfSpeech
:
DictionaryPartOfSpeech
;
level
?:
DictionaryLevel
;
examples
:
string
[]; }