Fix errors in preparation for v0.17.0

Reviewed By: @jeffmo

Differential Revision: D2512681

fb-gh-sync-id: dedf465af43cf3c8839fa960c5f1a2c2648e4e1e
This commit is contained in:
gabe@fb.com 2015-10-07 11:52:05 -07:00 committed by facebook-github-bot-4
parent f2bd983029
commit 08ec89d2e6
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,7 @@ var flattenStyle = require('flattenStyle');
var invariant = require('invariant'); var invariant = require('invariant');
var requestAnimationFrame = require('requestAnimationFrame'); var requestAnimationFrame = require('requestAnimationFrame');
import type InterpolationConfigType from 'Interpolation'; import type { InterpolationConfigType } from 'Interpolation';
type EndResult = {finished: bool}; type EndResult = {finished: bool};
type EndCallback = (result: EndResult) => void; type EndCallback = (result: EndResult) => void;

View File

@ -24,7 +24,6 @@ var invariant = function(condition, message) {
type ExtrapolateType = 'extend' | 'identity' | 'clamp'; type ExtrapolateType = 'extend' | 'identity' | 'clamp';
// $FlowFixMe D2163827
export type InterpolationConfigType = { export type InterpolationConfigType = {
inputRange: Array<number>; inputRange: Array<number>;
outputRange: (Array<number> | Array<string>); outputRange: (Array<number> | Array<string>);