Skip to content
This repository was archived by the owner on Jul 8, 2021. It is now read-only.

Commit cfd53f2

Browse files
author
Austin McDaniel
committed
fix pretty spacing
1 parent 6b8ea51 commit cfd53f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export function createReducer(klass: any) {
5252
};
5353
}
5454

55-
export function ofAction < T extends Action > (...allowedTypes: any[]) {
56-
return function ofTypeOperator(source$: Actions <T>): Actions < T > {
55+
export function ofAction <T extends Action> (...allowedTypes: any[]) {
56+
return function ofTypeOperator(source$: Actions <T>): Actions <T> {
5757
return filter.call(source$, (action: any) => {
5858
return allowedTypes.some(a => {
5959
const inst = new a();

0 commit comments

Comments
 (0)