UNPKG

ioredisearch

Version:

Client library for RediSearch Redis Module, designed to work in conjunction with ioredis

13 lines (12 loc) 421 B
export declare class Field { name: string; private args; constructor(name: string, ...args: any[]); readonly redisArgs: any[]; } export declare class TextField extends Field { constructor(name: string, weight?: number, sortable?: boolean, noStem?: boolean, noIndex?: boolean); } export declare class NumericField extends Field { constructor(name: string, sortable?: boolean, noIndex?: boolean); }