mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:21:07 +08:00
chore: Add typing for StorybookConfig.refs
This commit is contained in:
parent
17265e7792
commit
ed4a30f4d4
@ -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