Skip to content

Commit

Permalink
Fix exported types
Browse files Browse the repository at this point in the history
This path should be relative. Without being relative, the exported types
do not work.
  • Loading branch information
third774 committed Nov 8, 2021
1 parent 6f48b6f commit bbe35df
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit bbe35df

Please sign in to comment.