mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-12-30 20:06:59 +08:00
12 lines
212 B
JavaScript
12 lines
212 B
JavaScript
export default (api) => {
|
|
api.describe({
|
|
key: 'builder',
|
|
config: {
|
|
schema(joi) {
|
|
return joi.string();
|
|
},
|
|
default: '',
|
|
},
|
|
});
|
|
};
|