UNPKG

storybook-chrome-screenshot

Version:

A Storybook addon, Save the screenshot image of your stories! via puppeteer.

13 lines (12 loc) 329 B
/// <reference types="node" /> import { EventEmitter } from 'events'; export declare type StorybookEnv = 'react' | 'angular' | 'vue'; export interface Group { kind: string; stories: string[]; } export interface Channel extends EventEmitter { } export interface API { selectStory(kind: string, story: string): void; }