import { WiktionaryExample } from './WiktionaryExample'; import { WiktionaryQuotation } from './WiktionaryQuotation'; export interface WiktionaryDefinition { readonly kind: 'definition'; readonly source: string; readonly meaning: string; readonly children: readonly (WiktionaryDefinition | WiktionaryExample | WiktionaryQuotation)[]; }