feat(redux-devtools-instrument): export type PerformAction (#614)

This commit is contained in:
Nathan Bierema 2020-08-26 23:54:54 -04:00 committed by GitHub
parent b4ec7f86fc
commit 9e59cfdc7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ const isChromeOrNode =
process.release &&
process.release.name === 'node');
interface PerformAction<A extends Action<unknown>> {
export interface PerformAction<A extends Action<unknown>> {
type: typeof ActionTypes.PERFORM_ACTION;
action: A;
timestamp: number;