Merge branch 'master' into devtools-export-more-types

This commit is contained in:
Nathan Bierema 2020-08-26 23:55:09 -04:00 committed by GitHub
commit e92558a591
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;