UNPKG

195 BTypeScriptView Raw
1export interface TestPlanV1 {
2 version: "1.0";
3 tests: {
4 id: string | number;
5 selector: string;
6 }[];
7}
8export declare const parseTestPlan: () => TestPlanV1 | undefined;