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