kibana/x-pack/plugins/triggers_actions_ui/config.ts
2020-10-05 17:00:55 -06:00

14 lines
492 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { schema, TypeOf } from '@kbn/config-schema';
export const configSchema = schema.object({
enableGeoTrackingThresholdAlert: schema.maybe(schema.boolean({ defaultValue: false })),
});
export type ConfigSchema = TypeOf<typeof configSchema>;