mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Remove top level export of clearDecorators
This commit is contained in:
parent
1ee3e0afc8
commit
246fc20705
1
app/angular/index.d.ts
vendored
1
app/angular/index.d.ts
vendored
@ -30,5 +30,4 @@ declare module '@storybook/angular' {
|
|||||||
export function addDecorator(decorator: any): IApi;
|
export function addDecorator(decorator: any): IApi;
|
||||||
export function configure(loaders: () => NodeRequire, module: NodeModule): void;
|
export function configure(loaders: () => NodeRequire, module: NodeModule): void;
|
||||||
export function getStorybook(): IStoribookSection[];
|
export function getStorybook(): IStoribookSection[];
|
||||||
export function clearDecorators(): void;
|
|
||||||
}
|
}
|
||||||
|
9
app/angular/src/client/index.js
vendored
9
app/angular/src/client/index.js
vendored
@ -1,10 +1,3 @@
|
|||||||
export {
|
export { storiesOf, setAddon, addDecorator, configure, getStorybook } from './preview';
|
||||||
storiesOf,
|
|
||||||
setAddon,
|
|
||||||
addDecorator,
|
|
||||||
configure,
|
|
||||||
getStorybook,
|
|
||||||
clearDecorators,
|
|
||||||
} from './preview';
|
|
||||||
|
|
||||||
export { moduleMetadata } from './preview/angular/decorators';
|
export { moduleMetadata } from './preview/angular/decorators';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { moduleMetadata } from './decorators';
|
import { moduleMetadata } from './decorators';
|
||||||
import { addDecorator, storiesOf, clearDecorators, getStorybook } from '@storybook/angular';
|
import { addDecorator, storiesOf, clearDecorators, getStorybook } from '..';
|
||||||
|
|
||||||
class MockModule {}
|
class MockModule {}
|
||||||
class MockModuleTwo {}
|
class MockModuleTwo {}
|
||||||
|
6
app/angular/src/client/preview/index.d.ts
vendored
Normal file
6
app/angular/src/client/preview/index.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
export function storiesOf(kind: string, module: NodeModule): IApi;
|
||||||
|
export function setAddon(addon: any): void;
|
||||||
|
export function addDecorator(decorator: any): IApi;
|
||||||
|
export function configure(loaders: () => NodeRequire, module: NodeModule): void;
|
||||||
|
export function getStorybook(): IStoribookSection[];
|
||||||
|
export function clearDecorators(): void;
|
Loading…
x
Reference in New Issue
Block a user