kibana/x-pack/plugins/rollup/server/config.ts
CJ Cenizal ecdbece5d5
[7.x] Move Rollup out of legacy (#62891) (#64608)
* Move Rollup out of legacy (#62891)

* Put back 7.x-specific logic.
2020-04-27 19:09:40 -07:00

14 lines
453 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({
enabled: schema.boolean({ defaultValue: true }),
});
export type RollupConfig = TypeOf<typeof configSchema>;