Skip to content

Commit 4ff8250

Browse files
authored
Re-export types referenced by other packages (#1243)
* Re-export StylingFunction type * Re-export Base16Theme type from base16
1 parent 84f6622 commit 4ff8250

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

packages/redux-devtools-inspector-monitor/src/ActionPreview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { Component } from 'react';
22
import { Base16Theme } from 'redux-devtools-themes';
33
import { Action } from 'redux';
4-
import { StylingFunction } from 'react-base16-styling';
4+
import type { StylingFunction } from 'react-base16-styling';
55
import { PerformAction } from '@redux-devtools/core';
66
import { Delta } from 'jsondiffpatch';
77
import { DEFAULT_STATE, DevtoolsInspectorState } from './redux';

packages/redux-devtools-inspector-monitor/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export type { StylingFunction } from 'react-base16-styling';
12
export { default as InspectorMonitor } from './DevtoolsInspector';
23
export type { Tab, TabComponentProps } from './ActionPreview';
34
export type { DevtoolsInspectorState } from './redux';

packages/redux-devtools-ui/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
export type { Base16Theme } from 'base16';
2+
13
export { default as Container } from './Container';
24
export { default as Button } from './Button';
35
export { default as ContextMenu } from './ContextMenu';

0 commit comments

Comments
 (0)