mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
chore: add types for react demo (#8517)
chore: add types for react demo
This commit is contained in:
commit
013f1fb802
32
app/react/demo.d.ts
vendored
Normal file
32
app/react/demo.d.ts
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
declare const Welcome: {
|
||||
({ showApp }: {
|
||||
showApp: () => void;
|
||||
}): JSX.Element;
|
||||
displayName: string;
|
||||
propTypes: {
|
||||
showApp: PropTypes.Requireable<(...args: any[]) => any>;
|
||||
};
|
||||
defaultProps: {
|
||||
showApp: any;
|
||||
};
|
||||
};
|
||||
|
||||
declare const Button: {
|
||||
({ children, onClick, }: {
|
||||
children: React.ReactNode;
|
||||
onClick: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
||||
}): JSX.Element;
|
||||
displayName: string;
|
||||
propTypes: {
|
||||
children: PropTypes.Validator<PropTypes.ReactNodeLike>;
|
||||
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
||||
};
|
||||
defaultProps: {
|
||||
onClick: () => void;
|
||||
};
|
||||
};
|
||||
|
||||
export { Welcome, Button };
|
Loading…
x
Reference in New Issue
Block a user