We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c2dc36 commit 1441838Copy full SHA for 1441838
packages/models/src/index.ts
@@ -96,7 +96,6 @@ export {
96
type ReportsDiff,
97
} from './lib/reports-diff.js';
98
export {
99
- onProgressSchema,
100
runnerConfigSchema,
101
runnerFunctionSchema,
102
runnerFilesPathsSchema,
packages/models/src/lib/runner-config.ts
@@ -26,11 +26,8 @@ export const runnerConfigSchema = z.object(
26
27
export type RunnerConfig = z.infer<typeof runnerConfigSchema>;
28
29
-export const onProgressSchema = z.function().args(z.string()).returns(z.void());
30
-
31
export const runnerFunctionSchema = z
32
.function()
33
- .args(z.void())
34
.returns(z.union([auditOutputsSchema, z.promise(auditOutputsSchema)]));
35
36
export type RunnerFunction = z.infer<typeof runnerFunctionSchema>;
0 commit comments