react-ui89
Version:
A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.
14 lines (13 loc) • 404 B
TypeScript
import { Decorator } from "@storybook/react/*";
interface ActionPropUpdateOptions {
directLink?: {
[actionName: string]: string;
};
updateArgs?: {
[actionName: string]: (...args: any) => {
[propName: string]: any;
} | undefined;
};
}
export declare function ActionPropUpdate({ directLink, updateArgs, }: ActionPropUpdateOptions): Decorator;
export {};