Skip to content

Commit

Permalink
Merge pull request #47 from cloudflare/fix-exported-types
Browse files Browse the repository at this point in the history
Fix exported types
  • Loading branch information
third774 authored Nov 8, 2021
2 parents 6f48b6f + dd4923a commit d335c4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Stream.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import React, {
useMemo,
MutableRefObject,
} from "react";
import { StreamPlayerApi, StreamProps, VideoDimensions } from "types";
import { StreamPlayerApi, StreamProps, VideoDimensions } from "./types";
import { useStreamSDK, safelyAccessStreamSDK } from "./useStreamSDK";
import { useIframeSrc } from "./useIframeSrc";
import { validSrcUrl } from "./validSrcUrl";
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"@": ["./"],
"*": ["src/*", "node_modules/*"]
"*": ["node_modules/*"]
},
"jsx": "react",
"esModuleInterop": true
Expand Down

0 comments on commit d335c4f

Please sign in to comment.