Addon-knobs: Fix typescript types for disableForceUpdate

This commit is contained in:
Michael Shilman 2020-02-01 19:27:40 +08:00
parent 5c9e1898c3
commit a234c2ccc7
2 changed files with 7 additions and 1 deletions

View File

@ -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 {

View File

@ -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'>>