mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-26 07:59:48 +03:00
Strip out module augmentation
This commit is contained in:
parent
b8fb7c6b57
commit
342c10a7b2
|
@ -11,6 +11,9 @@ export function resolveBase16Theme(theme: Base16ThemeName | Base16Theme) {
|
|||
return getBase16Theme(theme, base16Themes);
|
||||
}
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
declare module '@emotion/react' {
|
||||
export interface Theme {
|
||||
TEXT_COLOR: string;
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
"outDir": "lib/types",
|
||||
"resolveJsonModule": true,
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "@emotion/react"
|
||||
"jsxImportSource": "@emotion/react",
|
||||
"stripInternal": true
|
||||
},
|
||||
"include": ["src"]
|
||||
}
|
||||
|
|
|
@ -11,6 +11,9 @@ export function resolveBase16Theme(
|
|||
return getBase16Theme(theme, reduxThemes) ?? reduxThemes.nicinabox;
|
||||
}
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
declare module '@emotion/react' {
|
||||
export interface Theme {
|
||||
TEXT_COLOR: string;
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
"outDir": "lib/types",
|
||||
"resolveJsonModule": true,
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "@emotion/react"
|
||||
"jsxImportSource": "@emotion/react",
|
||||
"stripInternal": true
|
||||
},
|
||||
"include": ["src"]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user