mirror of
https://github.com/cool-team-official/cool-admin-midway-packages.git
synced 2026-05-14 20:43:37 +00:00
19 lines
366 B
TypeScript
19 lines
366 B
TypeScript
import { ClientOptions } from '@elastic/elasticsearch';
|
|
|
|
export { CoolEsConfiguration as Configuration } from './configuration';
|
|
|
|
export * from './elasticsearch';
|
|
|
|
export * from './decorator/elasticsearch';
|
|
|
|
export * from './base';
|
|
|
|
export interface ICoolEs {
|
|
indexInfo(): Object;
|
|
}
|
|
|
|
export interface CoolEsConfig {
|
|
nodes: string[];
|
|
options?: ClientOptions;
|
|
}
|