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