mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Remove unused client-api types
This commit is contained in:
parent
303e394076
commit
0524dad63e
@ -4,7 +4,6 @@
|
||||
export * from './modules/csf';
|
||||
export * from './modules/addons';
|
||||
export * from './modules/story';
|
||||
export * from './modules/client-api';
|
||||
export * from './modules/core-common';
|
||||
export * from './modules/builder';
|
||||
export * from './modules/api';
|
||||
|
@ -1,80 +0,0 @@
|
||||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import type { Addon_StoryApi, Addon_Type } from './addons';
|
||||
import type { RenderContext } from './story';
|
||||
import type {
|
||||
Args,
|
||||
ArgTypes,
|
||||
DecoratorFunction,
|
||||
Renderer,
|
||||
LoaderFunction,
|
||||
Parameters,
|
||||
LegacyStoryFn,
|
||||
StoryContext,
|
||||
StoryFn,
|
||||
StoryId,
|
||||
StoryIdentifier,
|
||||
StoryKind,
|
||||
StoryName,
|
||||
ViewMode,
|
||||
} from './csf';
|
||||
|
||||
export interface ClientAPI_ErrorLike {
|
||||
message: string;
|
||||
stack: string;
|
||||
}
|
||||
|
||||
// Metadata about a story that can be set at various levels: global, for a kind, or for a single story.
|
||||
export interface ClientAPI_StoryMetadata {
|
||||
parameters?: Parameters;
|
||||
decorators?: DecoratorFunction[];
|
||||
loaders?: LoaderFunction[];
|
||||
}
|
||||
export type ClientAPI_ArgTypesEnhancer = (context: StoryContext) => ArgTypes;
|
||||
export type ClientAPI_ArgsEnhancer = (context: StoryContext) => Args;
|
||||
|
||||
type StorySpecifier = StoryId | { name: StoryName; kind: StoryKind } | '*';
|
||||
|
||||
export interface ClientAPI_StoreSelectionSpecifier {
|
||||
storySpecifier: StorySpecifier;
|
||||
viewMode: ViewMode;
|
||||
singleStory?: boolean;
|
||||
args?: Args;
|
||||
globals?: Args;
|
||||
}
|
||||
|
||||
export interface ClientAPI_StoreSelection {
|
||||
storyId: StoryId;
|
||||
viewMode: ViewMode;
|
||||
}
|
||||
|
||||
export type ClientAPI_AddStoryArgs = StoryIdentifier & {
|
||||
storyFn: StoryFn<any>;
|
||||
parameters?: Parameters;
|
||||
decorators?: DecoratorFunction[];
|
||||
loaders?: LoaderFunction[];
|
||||
};
|
||||
|
||||
export type ClientAPI_ClientApiReturnFn<StoryFnReturnType> = (
|
||||
...args: any[]
|
||||
) => Addon_StoryApi<StoryFnReturnType>;
|
||||
|
||||
export interface ClientAPI_ClientApiAddon<StoryFnReturnType = unknown> extends Addon_Type {
|
||||
apply: (a: Addon_StoryApi<StoryFnReturnType>, b: any[]) => any;
|
||||
}
|
||||
|
||||
export interface ClientAPI_ClientApiAddons<StoryFnReturnType> {
|
||||
[key: string]: ClientAPI_ClientApiAddon<StoryFnReturnType>;
|
||||
}
|
||||
|
||||
export type ClientAPI_RenderContextWithoutStoryContext = Omit<RenderContext, 'storyContext'>;
|
||||
|
||||
export interface ClientAPI_GetStorybookStory<TRenderer extends Renderer> {
|
||||
name: string;
|
||||
render: LegacyStoryFn<TRenderer>;
|
||||
}
|
||||
|
||||
export interface ClientAPI_GetStorybookKind<TRenderer extends Renderer> {
|
||||
kind: string;
|
||||
fileName: string;
|
||||
stories: ClientAPI_GetStorybookStory<TRenderer>[];
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user