mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 23:10:29 +00:00
Merge pull request #33728 from coldrye-collaboration/gh-33727-ImplementationCallback
[@types/jasmine] make ImplementationCallback type more lax
This commit is contained in:
Vendored
+1
-1
@@ -15,7 +15,7 @@
|
||||
// TypeScript Version: 2.8
|
||||
// For ddescribe / iit use : https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/karma-jasmine/karma-jasmine.d.ts
|
||||
|
||||
type ImplementationCallback = (() => PromiseLike<any>) | ((done: DoneFn) => void);
|
||||
type ImplementationCallback = (() => PromiseLike<any>) | (() => void) | ((done: DoneFn) => void);
|
||||
|
||||
/**
|
||||
* Create a group of specs (often called a suite).
|
||||
|
||||
Reference in New Issue
Block a user