@configurator/ravendb
Version:
RavenDB client for Node.js
9 lines (8 loc) • 319 B
TypeScript
import { IndexType } from "./Enums";
export declare class IndexTypeExtensions {
static isMap(type: IndexType): boolean;
static isMapReduce(type: IndexType): boolean;
static isAuto(type: IndexType): boolean;
static isStatic(type: IndexType): boolean;
static isJavaScript(type: IndexType): boolean;
}