2022-05-11 17:50:20 +08:00

11 lines
206 B
JavaScript

export default (api) => {
api.describe({
key: 'presets',
config: {
schema(joi) {
return joi.array().items(joi.string());
},
},
});
};