2016-12-08 10:32:22 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-12-08 10:32:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare module 'fbjs/lib/invariant' {
|
2017-12-19 01:04:29 +00:00
|
|
|
declare module.exports: <T>(condition: any, message: string, ...args: Array<any>) => void;
|
2016-12-08 10:32:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'fbjs/lib/nullthrows' {
|
2017-12-19 01:04:29 +00:00
|
|
|
declare module.exports: <T>(value: ?T) => T;
|
2016-12-08 10:32:22 +00:00
|
|
|
}
|