export interface IndexSchema { fields: Array, } export interface FieldSchema { name: string, type: string | 'int' | 'text' | 'boolean', config?: any, }