mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
add directive types
This commit is contained in:
parent
f8ffa5dfb2
commit
448e6abb92
@ -24,6 +24,15 @@ export interface Component {
|
|||||||
rawdescription: string;
|
rawdescription: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface Directive {
|
||||||
|
name: string;
|
||||||
|
propertiesClass: Property[];
|
||||||
|
inputsClass: Property[];
|
||||||
|
outputsClass: Property[];
|
||||||
|
methodsClass: Method[];
|
||||||
|
rawdescription: string;
|
||||||
|
}
|
||||||
|
|
||||||
export interface Argument {
|
export interface Argument {
|
||||||
name: string;
|
name: string;
|
||||||
type: string;
|
type: string;
|
||||||
@ -35,5 +44,6 @@ export interface Decorator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface CompodocJson {
|
export interface CompodocJson {
|
||||||
|
directives: Directive[];
|
||||||
components: Component[];
|
components: Component[];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user