lewa/words/types/ParticleWord.dhall

16 lines
246 B
Plaintext

{ Type =
{ word : Text
, gloss : Text
, definition : Text
, family : Text
, usageExamples : List Text
}
, default =
{ word = ""
, gloss = ""
, definition = ""
, family = ""
, usageExamples = [] : List Text
}
}