Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
nickofthyme committed Feb 3, 2020
1 parent 4ff43c5 commit 98ab2d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/legacy/core_plugins/vis_type_xy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { Legacy } from 'kibana';

import { LegacyPluginApi, LegacyPluginInitializer } from '../../types';

export interface ConfigShema {
export interface ConfigSchema {
visTypeXy: {
enabled: boolean;
};
Expand All @@ -35,7 +35,7 @@ const visTypeXyPluginInitializer: LegacyPluginInitializer = ({ Plugin }: LegacyP
publicDir: resolve(__dirname, 'public'),
uiExports: {
hacks: [resolve(__dirname, 'public/legacy')],
injectDefaultVars(server): ConfigShema {
injectDefaultVars(server): ConfigSchema {
const config = server.config();

return {
Expand Down

0 comments on commit 98ab2d2

Please sign in to comment.