aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-report/src/globals.d.ts
blob: 0d3beb44695c9bbb1c055d8afef5916ebe4b1e6b (plain) (blame)
1
2
3
4
5
6
7
8
9
declare module 'newman' {
    // tslint:disable-next-line:completed-docs
    export function run(options: any, callback?: () => void): void;
}

declare module '*.json' {
    const value: any;
    export default value;
}