chore: add types for react demo (#8517)

chore: add types for react demo
This commit is contained in:
Norbert de Langen 2019-10-23 12:12:30 +02:00 committed by GitHub
commit 013f1fb802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
app/react/demo.d.ts vendored Normal file
View 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 };