mirror of
https://github.com/nextapps-de/flexsearch.git
synced 2025-08-31 01:30:01 +02:00
add language presets and persistent adapter types to index.d.ts
This commit is contained in:
108
index.d.ts
vendored
108
index.d.ts
vendored
@@ -116,6 +116,7 @@ declare module "flexsearch" {
|
|||||||
* * Language: https://github.com/nextapps-de/flexsearch#languages
|
* * Language: https://github.com/nextapps-de/flexsearch#languages
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
global {
|
||||||
type EncoderOptions = {
|
type EncoderOptions = {
|
||||||
rtl?: boolean;
|
rtl?: boolean;
|
||||||
dedupe?: boolean;
|
dedupe?: boolean;
|
||||||
@@ -134,7 +135,7 @@ declare module "flexsearch" {
|
|||||||
minlength?: number;
|
minlength?: number;
|
||||||
maxlength?: number;
|
maxlength?: number;
|
||||||
cache?: boolean|number;
|
cache?: boolean|number;
|
||||||
};
|
}}
|
||||||
|
|
||||||
type EncoderSplitOptions = {
|
type EncoderSplitOptions = {
|
||||||
letter?: boolean;
|
letter?: boolean;
|
||||||
@@ -152,7 +153,8 @@ declare module "flexsearch" {
|
|||||||
LatinBalance: EncoderOptions,
|
LatinBalance: EncoderOptions,
|
||||||
LatinAdvanced: EncoderOptions,
|
LatinAdvanced: EncoderOptions,
|
||||||
LatinExtra: EncoderOptions,
|
LatinExtra: EncoderOptions,
|
||||||
LatinSoundex: EncoderOptions
|
LatinSoundex: EncoderOptions,
|
||||||
|
CJK: EncoderOptions
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -502,34 +504,6 @@ declare module "flexsearch" {
|
|||||||
): Promise<DocumentSearchResults>;
|
): Promise<DocumentSearchResults>;
|
||||||
}
|
}
|
||||||
|
|
||||||
type IdType =
|
|
||||||
"text" |
|
|
||||||
"char" |
|
|
||||||
"varchar" |
|
|
||||||
"string" |
|
|
||||||
"number" |
|
|
||||||
"numeric" |
|
|
||||||
"integer" |
|
|
||||||
"smallint" |
|
|
||||||
"tinyint" |
|
|
||||||
"mediumint" |
|
|
||||||
"int" |
|
|
||||||
"int8" |
|
|
||||||
"uint8" |
|
|
||||||
"int16" |
|
|
||||||
"uint16" |
|
|
||||||
"int32" |
|
|
||||||
"uint32" |
|
|
||||||
"int64" |
|
|
||||||
"uint64" |
|
|
||||||
"bigint";
|
|
||||||
|
|
||||||
type PersistentOptions = {
|
|
||||||
name?: string;
|
|
||||||
type?: IdType;
|
|
||||||
db?: any;
|
|
||||||
};
|
|
||||||
|
|
||||||
type DefaultResolve = {
|
type DefaultResolve = {
|
||||||
query?: string;
|
query?: string;
|
||||||
limit?: number;
|
limit?: number;
|
||||||
@@ -597,6 +571,7 @@ declare module "flexsearch" {
|
|||||||
resolve(options?: DefaultResolve): SearchResults;
|
resolve(options?: DefaultResolve): SearchResults;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
global{
|
||||||
class StorageInterface {
|
class StorageInterface {
|
||||||
constructor(name: string, config: PersistentOptions);
|
constructor(name: string, config: PersistentOptions);
|
||||||
constructor(config: string | PersistentOptions);
|
constructor(config: string | PersistentOptions);
|
||||||
@@ -606,7 +581,7 @@ declare module "flexsearch" {
|
|||||||
destroy() : Promise<void>;
|
destroy() : Promise<void>;
|
||||||
clear() : Promise<void>;
|
clear() : Promise<void>;
|
||||||
db: any;
|
db: any;
|
||||||
}
|
}}
|
||||||
|
|
||||||
export class IndexedDB extends StorageInterface{
|
export class IndexedDB extends StorageInterface{
|
||||||
db: IDBDatabase
|
db: IDBDatabase
|
||||||
@@ -625,7 +600,76 @@ declare module "flexsearch" {
|
|||||||
export default FlexSearch;
|
export default FlexSearch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// -----------------------------------
|
||||||
|
|
||||||
|
type IdType =
|
||||||
|
"text" |
|
||||||
|
"char" |
|
||||||
|
"varchar" |
|
||||||
|
"string" |
|
||||||
|
"number" |
|
||||||
|
"numeric" |
|
||||||
|
"integer" |
|
||||||
|
"smallint" |
|
||||||
|
"tinyint" |
|
||||||
|
"mediumint" |
|
||||||
|
"int" |
|
||||||
|
"int8" |
|
||||||
|
"uint8" |
|
||||||
|
"int16" |
|
||||||
|
"uint16" |
|
||||||
|
"int32" |
|
||||||
|
"uint32" |
|
||||||
|
"int64" |
|
||||||
|
"uint64" |
|
||||||
|
"bigint";
|
||||||
|
|
||||||
|
type PersistentOptions = {
|
||||||
|
name?: string;
|
||||||
|
type?: IdType;
|
||||||
|
db?: any;
|
||||||
|
};
|
||||||
|
|
||||||
|
declare module "flexsearch/db/redis" {
|
||||||
|
export default StorageInterface;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "flexsearch/db/postgres" {
|
||||||
|
export default StorageInterface;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "flexsearch/db/mongodb" {
|
||||||
|
export default StorageInterface;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "flexsearch/db/sqlite" {
|
||||||
|
export default StorageInterface;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "flexsearch/db/clickhouse" {
|
||||||
|
export default StorageInterface;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "flexsearch/db/indexeddb" {
|
||||||
|
export default class IndexedDB extends StorageInterface{
|
||||||
|
db: IDBDatabase
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------
|
||||||
|
|
||||||
|
declare module "flexsearch/lang/en" {
|
||||||
|
export default EncoderOptions;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "flexsearch/lang/de" {
|
||||||
|
export default EncoderOptions;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "flexsearch/lang/fr" {
|
||||||
|
export default EncoderOptions;
|
||||||
|
}
|
||||||
|
|
||||||
// https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html
|
// https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html
|
||||||
// https://github.com/futurGH/ts-to-jsdoc
|
// https://github.com/futurGH/ts-to-jsdoc
|
||||||
// https://sethmac.com/typescript-to-jsdoc/
|
// https://sethmac.com/typescript-to-jsdoc/
|
||||||
|
|
||||||
|
@@ -57,7 +57,7 @@ if(!build_light) describe("Add (Async)", function(){
|
|||||||
if(duration) break;
|
if(duration) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
expect(duration).to.closeTo(0, 3);
|
expect(duration).to.closeTo(0, 4);
|
||||||
|
|
||||||
for(let i = 0; i < 999999999; i++){
|
for(let i = 0; i < 999999999; i++){
|
||||||
await index.addAsync(i, "foo");
|
await index.addAsync(i, "foo");
|
||||||
|
Reference in New Issue
Block a user