🐛 added contents directly instead of having a module declaration

This commit is contained in:
Parth Mehta
2018-12-16 21:46:59 +11:00
parent 67962ba5f3
commit 562cebfeb0

View File

@@ -14,9 +14,7 @@ export interface FlushableOperation {
flush: () => void;
}
declare module 'flushable' {
export default function flushable(
onComplete: FlushableOnCompleteHandler,
delay: number
): FlushableOperation;
}
export default function flushable(
onComplete: FlushableOnCompleteHandler,
delay: number
): FlushableOperation;