import { BaseController } from "./Base"; /** * This is a global callback pattern, called by all asynchronous functions of the Kuzzle object. * * @callback responseCallback * @param {Object} err - Error object, NULL if the query is successful * @param {Object} [data] - The content of the query response */ /** * Kuzzle's memory storage is a separate data store from the database layer. * It is internaly based on Redis. You can access most of Redis functions (all * lowercased), except functions falling in the following categories: * * - blocking functions * - cluster commands * - configuration commands * - cursor functions * - database administration commands * - debugging functions * - script based functions * - transaction functions * */ export declare class MemoryStorageController extends BaseController { constructor(kuzzle: any); }