Skip to content

Commit 41d5d14

Browse files
committed
Add typings for the FullscreenDialogFrame.
1 parent c4101f8 commit 41d5d14

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "lib/FullscreenDialog.js",
66
"scripts": {
77
"prebuild": "rm -rf lib",
8-
"build": "babel src -d lib",
8+
"build": "babel src -d lib --copy-files",
99
"test": "standard",
1010
"lint": "standard",
1111
"prepublish": "babel src -d lib",

src/FullscreenDialogFrame.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { DialogProps } from "@material-ui/core";
2+
3+
export interface FullscreenDialogFrameProps extends DialogProps {}
4+
5+
export default function FullscreenDialogFrame(
6+
props: FullscreenDialogFrameProps
7+
): JSX.Element;

0 commit comments

Comments
 (0)