mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
import vine from '@vinejs/vine';
|
|
|
|
export const deleteApiTokenValidator = vine.compile(
|
|
vine.object({
|
|
params: vine.object({
|
|
tokenId: vine.string().trim().minLength(1).maxLength(255),
|
|
}),
|
|
})
|
|
);
|