Re-export types referenced by other packages (#1243)

* Re-export StylingFunction type

* Re-export Base16Theme type from base16
This commit is contained in:
Nathan Bierema 2022-10-09 14:28:53 -05:00 committed by GitHub
parent 84f662259d
commit 4ff825021d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import React, { Component } from 'react';
import { Base16Theme } from 'redux-devtools-themes';
import { Action } from 'redux';
import { StylingFunction } from 'react-base16-styling';
import type { StylingFunction } from 'react-base16-styling';
import { PerformAction } from '@redux-devtools/core';
import { Delta } from 'jsondiffpatch';
import { DEFAULT_STATE, DevtoolsInspectorState } from './redux';

View File

@ -1,3 +1,4 @@
export type { StylingFunction } from 'react-base16-styling';
export { default as InspectorMonitor } from './DevtoolsInspector';
export type { Tab, TabComponentProps } from './ActionPreview';
export type { DevtoolsInspectorState } from './redux';

View File

@ -1,3 +1,5 @@
export type { Base16Theme } from 'base16';
export { default as Container } from './Container';
export { default as Button } from './Button';
export { default as ContextMenu } from './ContextMenu';