mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 06:20:24 +00:00
9 lines
292 B
TypeScript
9 lines
292 B
TypeScript
import * as Yup from 'yup'
|
|
|
|
export const botListArgument = Yup.object({
|
|
type: Yup.string().oneOf(['VOTE', 'TRUSTED', 'NEW', 'PARTNERED', 'CATEGOORY', 'SEARCH']).required(),
|
|
page: Yup.number().positive().integer().optional().default(1),
|
|
query: Yup.string().optional()
|
|
})
|
|
|
|
export default Yup |