Skip to content

Commit

Permalink
eradicate: export * from blarg
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuellr committed Dec 3, 2019
1 parent 2bc6fee commit 48a493a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/event_log/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ import { PluginInitializerContext } from 'src/core/server';
import { ConfigSchema } from './types';
import { Plugin } from './plugin';

export * from './types';
export { IEventLogService, IEventLogger, IEvent } from './types';
export const config = { schema: ConfigSchema };
export const plugin = (context: PluginInitializerContext) => new Plugin(context);
2 changes: 1 addition & 1 deletion x-pack/plugins/event_log/server/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { Observable } from 'rxjs';
import { schema, TypeOf } from '@kbn/config-schema';

export * from '../generated/schemas';
export { IEvent, ECS_VERSION, EventSchema } from '../generated/schemas';
import { IEvent } from '../generated/schemas';

export const ConfigSchema = schema.object({
Expand Down

0 comments on commit 48a493a

Please sign in to comment.