mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 16:12:34 +08:00
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
import type { ActionOptions } from '../models';
|
|
|
|
export const config: ActionOptions = {
|
|
depth: 10,
|
|
clearOnStoryChange: true,
|
|
limit: 50,
|
|
};
|
|
|
|
export const configureActions = (options: ActionOptions = {}): void => {
|
|
Object.assign(config, options);
|
|
};
|