mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
Merge pull request #16443 from seuros/storybooktsref
Core: Add typing for StorybookConfig.refs
This commit is contained in:
commit
0d0ee758ec
@ -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.
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user