Summary: See D37139129 Reviewed By: lblasa Differential Revision: D37236435 fbshipit-source-id: 927e9f741bfedb65165f5d24f0acfb775925cdc7
23 lines
496 B
TypeScript
23 lines
496 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import {StoreEnhancerStoreCreator} from 'redux';
|
|
|
|
declare global {
|
|
interface StoreEnhancerStateSanitizer {
|
|
stateSanitizer: Function;
|
|
}
|
|
|
|
interface Window {
|
|
__REDUX_DEVTOOLS_EXTENSION__:
|
|
| undefined
|
|
| (StoreEnhancerStoreCreator & StoreEnhancerStateSanitizer);
|
|
}
|
|
}
|