export type ObjectLike = { [prop: string]: any };

export type AccessorFunction = (d: any) => any;

export type IndexerFunction = (d: any) => string;

export type ArrayOfObjects = ObjectLike[];
