import { OneOrMany, SourceRecord } from "../source.js"; import { z } from "zod"; //#region src/lib/sources/github-actions.d.ts declare const githubActionSchema: z.ZodObject<{ file: z.ZodString; lastRunAt: z.ZodOptional; lastRunConclusion: z.ZodOptional>; lastRunDurationMs: z.ZodOptional; lastRunStatus: z.ZodOptional>; lastRunUrl: z.ZodOptional; name: z.ZodString; }, z.core.$strip>; export type GitHubAction = z.infer; export type GitHubActionsData = OneOrMany> | undefined; //#endregion