7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
|
declare namespace jasmine {
|
||
|
export interface DoneFn extends Function {
|
||
|
(): void;
|
||
|
fail: (message: Error | string) => void;
|
||
|
}
|
||
|
}
|