feat: improve typings of Angular components used in sb init

This commit is contained in:
Gaëtan Maisse 2021-08-12 14:19:09 +02:00
parent 5f589a2697
commit 712ba57fc5
No known key found for this signature in database
GPG Key ID: D934C0EF3714A8A8
3 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,2 @@
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface User {}

View File

@ -1,4 +1,5 @@
import { Component, Input, Output, EventEmitter } from '@angular/core';
import { User } from './User';
@Component({
selector: 'storybook-header',
@ -50,7 +51,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core';
})
export default class HeaderComponent {
@Input()
user: unknown = null;
user: User | null = null;
@Output()
onLogin = new EventEmitter<Event>();

View File

@ -1,4 +1,5 @@
import { Component, Input, Output, EventEmitter } from '@angular/core';
import { User } from './User';
@Component({
selector: 'storybook-page',
@ -61,7 +62,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core';
})
export default class PageComponent {
@Input()
user: unknown = null;
user: User | null = null;
@Output()
onLogin = new EventEmitter<Event>();