wix-storybook-utils
Version:
Utilities for automated component documentation within Storybook
23 lines (21 loc) • 355 B
text/typescript
// TODO: not yet full definition
export interface Prop {
type: {
name?: string;
value?: {
value?: string;
computed?: boolean;
}[];
};
required?: boolean;
description?: string;
tags?: Tag[];
defaultValue?: {
value?: string;
computed?: boolean;
};
}
interface Tag {
title?: string;
description?: string;
}