Files
cypress/packages/example/lib/example.d.ts
2021-11-15 09:44:49 +10:00

10 lines
264 B
TypeScript

declare const example: {
getPathToExamples(): Promise<string[]>;
getPathToIntegration(): string;
getPathToPlugins(): string;
getPathToSupportFiles(): Promise<string[]>;
getPathToTsConfig(): string;
getPathToFixture(): string;
}
export default example;