import { Table } from '../table/Table'; import type { QueryLike } from '../query'; export interface SchemaDecl { name?: string; attrs?: string[]; hint?: 'list' | 'value'; funcs?: QueryLike[]; initialize?: (table: Table) => void; disableGlobalErrors?: boolean; }