mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
CR update to use type alias
This commit is contained in:
parent
73a02c522d
commit
a10b2d18b2
@ -15,15 +15,6 @@ export interface Property {
|
|||||||
description?: string;
|
description?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Component {
|
|
||||||
name: string;
|
|
||||||
propertiesClass: Property[];
|
|
||||||
inputsClass: Property[];
|
|
||||||
outputsClass: Property[];
|
|
||||||
methodsClass: Method[];
|
|
||||||
rawdescription: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Directive {
|
export interface Directive {
|
||||||
name: string;
|
name: string;
|
||||||
propertiesClass: Property[];
|
propertiesClass: Property[];
|
||||||
@ -33,6 +24,8 @@ export interface Directive {
|
|||||||
rawdescription: string;
|
rawdescription: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type Component = Directive;
|
||||||
|
|
||||||
export interface Argument {
|
export interface Argument {
|
||||||
name: string;
|
name: string;
|
||||||
type: string;
|
type: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user