mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
import { ActionOptions } from './ActionOptions';
|
|
import { ActionsMap } from './ActionsMap';
|
|
|
|
export interface ActionsFunction {
|
|
<T extends string>(handlerMap: Record<T, string>, options?: ActionOptions): ActionsMap<T>;
|
|
<T extends string>(...handlers: T[]): ActionsMap<T>;
|
|
|
|
<T extends string>(handler1: T, options?: ActionOptions): ActionsMap<T>;
|
|
<T extends string>(handler1: T, handler2: T, options?: ActionOptions): ActionsMap<T>;
|
|
<T extends string>(handler1: T, handler2: T, handler3: T, options?: ActionOptions): ActionsMap<T>;
|
|
<T extends string>(
|
|
handler1: T,
|
|
handler2: T,
|
|
handler3: T,
|
|
handler4: T,
|
|
options?: ActionOptions
|
|
): ActionsMap<T>;
|
|
<T extends string>(
|
|
handler1: T,
|
|
handler2: T,
|
|
handler3: T,
|
|
handler4: T,
|
|
handler5: T,
|
|
options?: ActionOptions
|
|
): ActionsMap<T>;
|
|
<T extends string>(
|
|
handler1: T,
|
|
handler2: T,
|
|
handler3: T,
|
|
handler4: T,
|
|
handler5: T,
|
|
handler6: T,
|
|
options?: ActionOptions
|
|
): ActionsMap<T>;
|
|
<T extends string>(
|
|
handler1: T,
|
|
handler2: T,
|
|
handler3: T,
|
|
handler4: T,
|
|
handler5: T,
|
|
handler6: T,
|
|
handler7: T,
|
|
options?: ActionOptions
|
|
): ActionsMap<T>;
|
|
<T extends string>(
|
|
handler1: T,
|
|
handler2: T,
|
|
handler3: T,
|
|
handler4: T,
|
|
handler5: T,
|
|
handler6: T,
|
|
handler7: T,
|
|
handler8: T,
|
|
options?: ActionOptions
|
|
): ActionsMap<T>;
|
|
<T extends string>(
|
|
handler1: T,
|
|
handler2: T,
|
|
handler3: T,
|
|
handler4: T,
|
|
handler5: T,
|
|
handler6: T,
|
|
handler7: T,
|
|
handler8: T,
|
|
handler9: T,
|
|
options?: ActionOptions
|
|
): ActionsMap<T>;
|
|
<T extends string>(
|
|
handler1: T,
|
|
handler2: T,
|
|
handler3: T,
|
|
handler4: T,
|
|
handler5: T,
|
|
handler6: T,
|
|
handler7: T,
|
|
handler8: T,
|
|
handler9: T,
|
|
handler10: T,
|
|
options?: ActionOptions
|
|
): ActionsMap<T>;
|
|
}
|