remove flow typings from Schedule.js (#13662)

This commit is contained in:
Alexey Raspopov
2018-09-14 22:55:23 -04:00
committed by Dan Abramov
parent d92114b98e
commit 1d8a75fef0

View File

@@ -186,7 +186,7 @@ function unstable_scheduleWork(callback, options) {
return newNode;
}
function unstable_cancelScheduledWork(callbackNode: CallbackNode): void {
function unstable_cancelScheduledWork(callbackNode) {
var next = callbackNode.next;
if (next === null) {
// Already cancelled.