mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
Addon-knobs: Fix typescript types for disableForceUpdate
This commit is contained in:
parent
5c9e1898c3
commit
a234c2ccc7
@ -49,6 +49,7 @@ function escapeStrings(obj: any): any {
|
|||||||
interface KnobManagerOptions {
|
interface KnobManagerOptions {
|
||||||
escapeHTML?: boolean;
|
escapeHTML?: boolean;
|
||||||
disableDebounce?: boolean;
|
disableDebounce?: boolean;
|
||||||
|
disableForceUpdate?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class KnobManager {
|
export default class KnobManager {
|
||||||
|
@ -18,7 +18,12 @@ export type Mutable<T> = {
|
|||||||
-readonly [P in keyof T]: T[P] extends readonly (infer U)[] ? U[] : T[P];
|
-readonly [P in keyof T]: T[P] extends readonly (infer U)[] ? U[] : T[P];
|
||||||
};
|
};
|
||||||
|
|
||||||
type KnobPlus<T extends KnobType, K> = K & { type: T; groupId?: string; disableDebounce?: boolean; disableForceUpdate?: boolean };
|
type KnobPlus<T extends KnobType, K> = K & {
|
||||||
|
type: T;
|
||||||
|
groupId?: string;
|
||||||
|
disableDebounce?: boolean;
|
||||||
|
disableForceUpdate?: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
export type Knob<T extends KnobType = any> = T extends 'text'
|
export type Knob<T extends KnobType = any> = T extends 'text'
|
||||||
? KnobPlus<T, Pick<TextTypeKnob, 'value'>>
|
? KnobPlus<T, Pick<TextTypeKnob, 'value'>>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user