props types should be exported for tests

This commit is contained in:
Sebastian 2023-04-21 11:05:41 -03:00
parent 1ee962fbd8
commit fc2adae6bd
No known key found for this signature in database
GPG Key ID: 173909D1A5F66069
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ function locationAsText(l: Location | undefined): VNode {
type State = States.Loading | States.Error | States.Hidden | States.Show;
namespace States {
export namespace States {
export interface Loading {
status: "loading";
hideHandler: ButtonHandler;

View File

@ -50,7 +50,7 @@ const Container = styled.div`
}
`;
interface Props {
export interface Props {
onDetected: (url: string) => void;
}