@giupaprusso/storybook-addon
v0.3.4
Published
Storybook addon to document exported declarations from ts files
Maintainers
Readme
@giupaprusso/storybook-addon
Storybook addon to document exported declarations from ts files
Installation
Yarn
yarn add -D @giupaprusso/storybook-addonNPM
npm install --save-dev @giupaprusso/storybook-addonExample

Is displayed from the following TypeScript interface:
/**
* A movie is a piece of media that is intended to be viewed as a film.
* @link https://wikipedia.org/wiki/Film | Useful link
*/
export interface Movie extends Media {
/**
* The title of the movie
*/
readonly title: string;
/**
* The year the movie was released
* @type {Date}
*/
year: number;
/**
* The rating of the movie
* @link https://wikipedia.org/wiki/Film_rating_system Film rating system
* @default 0
*/
rating?: number;
genres: string[];
/**
* The actors in the movie
*/
cast: Actor[];
/**
* @deprecated
*/
director: Director;
}Usage
See @giupaprusso documentation.
