/// export interface Options { useField?: boolean; field?: string; } export interface Post { id: string; text: string; date: Date; timestamp: number; author: string; authorId: string; tags?: string[]; raw?: any; location?: GeoJSON.Point; [key: string]: any; } export interface Wrapper { (data: any): Post; }