mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-05-19 13:11:26 +00:00
a314d5b2e4
Now possible to license under MIT following the change to React Native's license. https://github.com/facebook/react-native/commit/26684cf3adf4094eb6c405d345a75bf8c7c0bf88 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;
|
|
}
|