mirror of
https://github.com/remnawave/backend.git
synced 2026-08-04 14:48:33 +00:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import z from 'zod';
|
|
|
|
export const NodePluginSchema = z.object({
|
|
uuid: z.uuid(),
|
|
viewPosition: z.number().int(),
|
|
name: z.string(),
|
|
pluginConfig: z.nullable(z.unknown()),
|
|
});
|