mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
remove typings for @storybook/addon-knobs, references https://github.com/DefinitelyTyped/DefinitelyTyped/issues/17399
This commit is contained in:
parent
0520eabf38
commit
56f96a6ccb
@ -4,7 +4,6 @@
|
||||
"description": "Storybook Addon Prop Editor Component",
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"typings": "./storybook-addon-knobs.d.ts",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/storybooks/storybook.git"
|
||||
|
46
addons/knobs/storybook-addon-knobs.d.ts
vendored
46
addons/knobs/storybook-addon-knobs.d.ts
vendored
@ -1,46 +0,0 @@
|
||||
import * as React from 'react';
|
||||
|
||||
interface KnobOption<T> {
|
||||
value: T,
|
||||
type: 'text' | 'boolean' | 'number' | 'color' | 'object' | 'select' | 'date',
|
||||
}
|
||||
|
||||
interface StoryContext {
|
||||
kind: string,
|
||||
story: string,
|
||||
}
|
||||
|
||||
interface NumberOptions {
|
||||
range: boolean,
|
||||
min: number,
|
||||
max: number,
|
||||
step: number,
|
||||
}
|
||||
|
||||
export function knob<T>(name: string, options: KnobOption<T>): T;
|
||||
|
||||
export function text(name: string, value: string | null): string;
|
||||
|
||||
export function boolean(name: string, value: boolean): boolean;
|
||||
|
||||
export function number(name: string, value: number, options?: NumberOptions): number;
|
||||
|
||||
export function color(name: string, value: string): string;
|
||||
|
||||
export function object<T>(name: string, value: T): T;
|
||||
|
||||
export function select<T>(name: string, options: { [s: string]: T }, value: string): T;
|
||||
export function select(name: string, options: string[], value: string): string;
|
||||
|
||||
export function date(name: string, value?: Date): Date;
|
||||
|
||||
interface IWrapStoryProps {
|
||||
context?: Object;
|
||||
storyFn?: Function;
|
||||
channel?: Object;
|
||||
knobStore?: Object;
|
||||
initialContent?: Object;
|
||||
}
|
||||
|
||||
export function withKnobs(storyFn: Function, context: StoryContext): React.ReactElement<IWrapStoryProps>;
|
||||
export function withKnobsOptions(options: Object): (storyFn: Function, context: StoryContext) => React.ReactElement<IWrapStoryProps>;
|
Loading…
x
Reference in New Issue
Block a user