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 коммит произвёл facebook-github-bot-4
Родитель f2bd983029
Коммит 08ec89d2e6
2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

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

Просмотреть файл

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