Merge pull request #16443 from seuros/storybooktsref

Core: Add typing for StorybookConfig.refs
This commit is contained in:
Michael Shilman 2021-10-22 13:35:28 +08:00 committed by GitHub
commit 0d0ee758ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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.
*/