react-native/flow/fbjs.js
Eli White 86b6f5d39e Add Prettier to some files
Reviewed By: sahrens

Differential Revision: D7958196

fbshipit-source-id: 05a04380a4a1f3abd4cc3a9034fc70deaa4a444b
2018-05-10 16:16:35 -07:00

21 lines
436 B
JavaScript

/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
declare module 'fbjs/lib/invariant' {
declare module.exports: <T>(
condition: any,
message: string,
...args: Array<any>
) => void;
}
declare module 'fbjs/lib/nullthrows' {
declare module.exports: <T>(value: ?T) => T;
}