@configurator/ravendb
Version:
RavenDB client for Node.js
9 lines (8 loc) • 362 B
TypeScript
import { IndexDefinition } from "./IndexDefinition";
import { AbstractGenericIndexCreationTask } from "./AbstractGenericIndexCreationTask";
export declare abstract class AbstractCsharpIndexCreationTask extends AbstractGenericIndexCreationTask {
map: string;
reduce: string;
get isMapReduce(): boolean;
createIndexDefinition(): IndexDefinition;
}