mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
12 lines
178 B
TypeScript
12 lines
178 B
TypeScript
import vine from '@vinejs/vine';
|
|
|
|
const params = vine.object({
|
|
id: vine.number(),
|
|
});
|
|
|
|
export const getSharedCollectionValidator = vine.compile(
|
|
vine.object({
|
|
params,
|
|
})
|
|
);
|