mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-01-12 17:43:00 +08:00
Now possible to license under MIT following the change to React Native's
license.
26684cf3ad
Fix #828
15 lines
402 B
JavaScript
15 lines
402 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.
|
|
*/
|
|
|
|
declare module 'fbjs/lib/invariant' {
|
|
declare function exports<T>(condition: any, message: string, ...args: Array<any>): void;
|
|
}
|
|
|
|
declare module 'fbjs/lib/nullthrows' {
|
|
declare function exports<T>(value: ?T): T;
|
|
}
|