mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const DecryptedObject = z.object({
|
|
o: z.string().optional(),
|
|
r: z.string().optional(),
|
|
v: z.string().optional(),
|
|
});
|