mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-09-05 23:16:49 +08:00
20 lines
464 B
JavaScript
20 lines
464 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(),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
});
|
|
};
|