Ticker typedef had no defined return type

This commit is contained in:
Ian Hickson 2016-02-11 15:39:59 -08:00
parent 3af3b23607
commit 4d90194eff

View File

@ -6,7 +6,7 @@ import 'dart:async';
import 'scheduler.dart'; import 'scheduler.dart';
typedef TickerCallback(Duration elapsed); typedef void TickerCallback(Duration elapsed);
/// Calls its callback once per animation frame. /// Calls its callback once per animation frame.
class Ticker { class Ticker {