mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-10-17 01:04:29 +03:00
* Upgrade * yarn.lock * Combine * Ignore * Update snapshots * All the cool kids are doing this
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
declare global {
|
|
interface SymbolConstructor {
|
|
readonly observable: symbol;
|
|
}
|
|
}
|
|
|
|
const $$observable = /* #__PURE__ */ (() =>
|
|
(typeof Symbol === 'function' && Symbol.observable) || '@@observable')();
|
|
|
|
export default $$observable;
|