mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-27 12:08:49 +08:00
20 lines
462 B
JavaScript
20 lines
462 B
JavaScript
|
|
export default (api) => {
|
|
api.describe({
|
|
key: 'copy',
|
|
config: {
|
|
schema(joi) {
|
|
return joi.array().items(
|
|
joi.alternatives(
|
|
joi.object({
|
|
from: joi.string(),
|
|
to: joi.string()
|
|
}),
|
|
joi.string()
|
|
)
|
|
);
|
|
}
|
|
}
|
|
});
|
|
};
|