import { WiktionaryExample } from './WiktionaryExample'; import { WiktionaryQuotation } from './WiktionaryQuotation'; export interface WiktionaryDefinition { readonly kind: 'definition'; readonly source: string; readonly meaning: string; // Definition can container sub-definition or examples or quotations readonly children: readonly ( | WiktionaryDefinition | WiktionaryExample | WiktionaryQuotation )[]; }