UNPKG

287 BTypeScriptView Raw
1/* eslint-disable no-undef */
2
3declare module 'qunit' {
4 export const module: typeof QUnit.module;
5 export const test: typeof QUnit.test;
6 export const skip: typeof QUnit.skip;
7 export const only: typeof QUnit.only;
8 export const todo: typeof QUnit.todo;
9
10 export default QUnit;
11}