/** * Auto-generated Zod schema for SecretScanningLocationCommit * DO NOT MODIFY - regenerate with: bun run generate:schemas */ import type { SecretScanningLocationCommit as SecretScanningLocationCommitOctokit } from '@octokit/webhooks-types'; import { z } from 'zod'; export declare const SecretScanningLocationCommitSchema: z.ZodObject<{ path: z.ZodString; start_line: z.ZodNumber; end_line: z.ZodNumber; start_column: z.ZodNumber; end_column: z.ZodNumber; blob_sha: z.ZodString; blob_url: z.ZodString; commit_sha: z.ZodString; commit_url: z.ZodString; }, z.core.$strip>; export type SecretScanningLocationCommit = SecretScanningLocationCommitOctokit; export declare function isSecretScanningLocationCommit(value: unknown): value is SecretScanningLocationCommit; //# sourceMappingURL=secret-scanning-location-commit.d.ts.map