export type TokenID = string; export interface Token { id: TokenID; num: number; text: string; lemma: string; pos: string; cpos: string; morph: string; head: TokenID; func: string; head2: string; func2: string; edep: Array<[string, string]>; storage: string; storage2: string; storage3: string; child_funcs: string[]; position: 'first' | 'middle' | 'last'; is_super_tok: boolean; sentence?: Sentence; } export interface Sentence { tokens: Token[]; annotations: Record; input_annotations: Record; docname: string; } //# sourceMappingURL=types.d.ts.map