Commit 3b9cc5d3 authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

Fixed linting errors.

No related merge requests found
Showing with 1 addition and 3 deletions
+1 -3
...@@ -5,8 +5,6 @@ import { marbles } from 'rxjs-marbles/jasmine'; ...@@ -5,8 +5,6 @@ import { marbles } from 'rxjs-marbles/jasmine';
import { SubscribeOnInit } from './subscribe-on-init.decorator'; import { SubscribeOnInit } from './subscribe-on-init.decorator';
describe('@SubscribeOnInit', () => { describe('@SubscribeOnInit', () => {
const VALUES = { a: 'a' };
class PropertyTestClass<T extends Observable<any>> class PropertyTestClass<T extends Observable<any>>
implements OnInit, OnDestroy { implements OnInit, OnDestroy {
@SubscribeOnInit() @SubscribeOnInit()
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
*/ */
type Hookable<K extends string | symbol, M extends (...args: any[]) => any> = { type Hookable<K extends string | symbol, M extends (...args: any[]) => any> = {
[X in K]: M [X in K]: M;
}; };
function isHookable< function isHookable<
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment