chore: Add typing for StorybookConfig.refs

This commit is contained in:
Abdelkader Boudih 2021-10-21 20:48:28 +01:00
parent 17265e7792
commit ed4a30f4d4
No known key found for this signature in database
GPG Key ID: F035EF394CCA8CFA

View File

@ -261,6 +261,11 @@ export type Preset =
*/
export type Entry = string;
type StorybookRefs = Record<string, {
title: string;
url: string;
}>;
/**
* The interface for Storybook configuration in `main.ts` files.
*/
@ -329,6 +334,11 @@ export interface StorybookConfig {
*/
typescript?: Partial<TypescriptOptions>;
/**
* References external Storybooks
*/
refs: StorybookRefs | ((config: Configuration, options: Options) => StorybookRefs)
/**
* Modify or return a custom Webpack config.
*/