mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
chore(typescript): fix @ts-expect-error
strict types
This commit is contained in:
parent
e5cded85e7
commit
4d163568c2
@ -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()
|
||||
|
@ -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, {});
|
||||
|
Loading…
x
Reference in New Issue
Block a user