chore(typescript): fix @ts-expect-error strict types

This commit is contained in:
Mostafa Sherif 2023-02-07 05:41:37 -05:00
parent e5cded85e7
commit 4d163568c2
2 changed files with 2 additions and 3 deletions

View File

@ -72,8 +72,7 @@ export class DocButtonComponent<T> {
/** Test null default value. */
@Input()
// @ts-expect-error intentionally undefined
public anUndefinedValue;
public anUndefinedValue: undefined;
/** Test numeric default value. */
@Input()

View File

@ -147,6 +147,7 @@ export interface StaticMeta
ComponentAnnotations,
'id' | 'title' | 'includeStories' | 'excludeStories' | 'tags'
> {
[key: string]: string | string[] | RegExp;
component?: string;
}
@ -211,7 +212,6 @@ export class CsfFile {
if (p.key.name === 'title') {
meta.title = this._parseTitle(p.value);
} else if (['includeStories', 'excludeStories'].includes(p.key.name)) {
// @ts-expect-error (Converted from ts-ignore)
meta[p.key.name] = parseIncludeExclude(p.value);
} else if (p.key.name === 'component') {
const { code } = generate.default(p.value, {});