We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4101f8 commit 41d5d14Copy full SHA for 41d5d14
package.json
@@ -5,7 +5,7 @@
5
"main": "lib/FullscreenDialog.js",
6
"scripts": {
7
"prebuild": "rm -rf lib",
8
- "build": "babel src -d lib",
+ "build": "babel src -d lib --copy-files",
9
"test": "standard",
10
"lint": "standard",
11
"prepublish": "babel src -d lib",
src/FullscreenDialogFrame.d.ts
@@ -0,0 +1,7 @@
1
+import { DialogProps } from "@material-ui/core";
2
+
3
+export interface FullscreenDialogFrameProps extends DialogProps {}
4
+export default function FullscreenDialogFrame(
+ props: FullscreenDialogFrameProps
+): JSX.Element;
0 commit comments