UNPKG

storycrawler

Version:

Utilities to build Storybook crawling tools with Puppeteer

14 lines (13 loc) 209 B
export type StorybookVersion = 'v5'; export type V5Story = { id: string; kind: string; story: string; version: 'v5'; }; /** * * Represents a story object * **/ export type Story = V5Story;