mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
716c8cf175
Co-authored-by: Rhys Arkins <rhys@arkins.net>
6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const UserSchema = z.object({
|
|
displayName: z.string(),
|
|
emailAddress: z.string(),
|
|
});
|