types.tsx 272 B

12345678
  1. import type {ComponentType} from 'react';
  2. export type StoriesQuery = {name: string};
  3. // Exports from a *.stories.tsx file, both default and named, do not accept props.
  4. interface StoryProps {}
  5. export type ResolvedStoryModule = Record<string, ComponentType<StoryProps>>;