Skip to content

Commit 4d9ada2

Browse files
committed
fix(redite.d.ts): replace missing T with any
1 parent 1801cf9 commit 4d9ada2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redite.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ declare namespace r {
2828
interface ChildWrapper {
2929
_stack: string[];
3030

31-
finally(onfinally?: (() => void) | undefined | null): Promise<T>
31+
finally(onfinally?: (() => void) | undefined | null): Promise<any>
3232
then(onfulfilled?: ((value: any) => any) | undefined | null, onrejected?: ((reason: any) => any) | undefined | null): Promise<any>;
3333
catch(onrejected?: ((reason: any) => any) | undefined | null): Promise<any>;
3434

0 commit comments

Comments
 (0)