mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import { z } from 'zod';
|
|
import { Yaml } from '../../../util/schema-utils';
|
|
|
|
export const CopierAnswersFile = Yaml.pipe(
|
|
z.object({
|
|
_commit: z.string(),
|
|
_src_path: z.string().url(),
|
|
}),
|
|
);
|
|
|
|
export type CopierAnswersFile = z.infer<typeof CopierAnswersFile>;
|