// Type definitions for Jasmine Data Driven Tests // Project: https://github.com/gburghardt/jasmine-data_driven_tests // Definitions by: Anthony MacKinnon // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare function all(description: string, dataset: any[], assertion: (...args: any[]) => void): void; declare function xall(description: string, dataset: any[], assertion: (...args: any[]) => void): void;