mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:51:18 +08:00
# Conflicts: # app/angular/src/client/preview/index.js # scripts/compile-babel.js # yarn.lock
38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
/* eslint-disable prefer-destructuring */
|
|
import { start } from '@storybook/core/client';
|
|
import { ClientStoryApi } from '@storybook/addons';
|
|
|
|
import './globals';
|
|
import render from './render';
|
|
import { IStorybookSection, StoryFnAngularReturnType } from './types';
|
|
|
|
const framework = 'angular';
|
|
|
|
interface ClientApi extends ClientStoryApi<StoryFnAngularReturnType> {
|
|
setAddon(addon: any): void;
|
|
configure(loaders: () => void, module: NodeModule): void;
|
|
getStorybook(): IStorybookSection[];
|
|
clearDecorators(): void;
|
|
forceReRender(): void;
|
|
raw: () => any; // todo add type
|
|
load: (...args: any[]) => void;
|
|
}
|
|
|
|
const api = start(render);
|
|
|
|
export const storiesOf: ClientApi['storiesOf'] = (kind, m) => {
|
|
return (api.clientApi.storiesOf(kind, m) as ReturnType<ClientApi['storiesOf']>).addParameters({
|
|
framework,
|
|
});
|
|
};
|
|
|
|
export const load: ClientApi['load'] = (...args) => api.load(...args, framework);
|
|
export const addDecorator: ClientApi['addDecorator'] = api.clientApi.addDecorator;
|
|
export const addParameters: ClientApi['addParameters'] = api.clientApi.addParameters;
|
|
export const clearDecorators: ClientApi['clearDecorators'] = api.clientApi.clearDecorators;
|
|
export const setAddon: ClientApi['setAddon'] = api.clientApi.setAddon;
|
|
export const configure: ClientApi['configure'] = api.configApi.configure;
|
|
export const forceReRender: ClientApi['forceReRender'] = api.forceReRender;
|
|
export const getStorybook: ClientApi['getStorybook'] = api.clientApi.getStorybook;
|
|
export const raw: ClientApi['raw'] = api.clientApi.raw;
|