mirror of
https://github.com/cool-team-official/cool-admin-midway-packages.git
synced 2026-04-16 09:28:09 +00:00
18 lines
364 B
TypeScript
18 lines
364 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
|
|
} |