import { JSONObject } from "kuzzle-sdk"; export interface StoreCollectionDefinition { /** * Collection mappings */ mappings: JSONObject; /** * Collection settings */ settings?: JSONObject; } export type StoreCollectionsDefinition = Record;