mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const BitriseStepFile = z.object({
|
|
published_at: z.string(),
|
|
source_code_url: z.string().optional(),
|
|
});
|