File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import styles from "./loader-container.module.scss";
2
2
import { useRGS } from "r18gs" ;
3
3
import { LOADER_RGS_KEY } from "../../constants" ;
4
4
5
- interface LoaderContainerProps extends React . HTMLProps < HTMLDivElement > {
5
+ export interface LoaderContainerProps extends React . HTMLProps < HTMLDivElement > {
6
6
children ?: React . ReactNode ;
7
7
loading ?: boolean ;
8
8
}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export interface BaseProps extends HTMLProps<HTMLDivElement> {
11
11
}
12
12
13
13
/** Other props - loaderClass is included here as we will extend BaseProps for other loaders */
14
- interface OtherProps {
14
+ export interface OtherProps {
15
15
/** Loader class name */
16
16
loaderClass : string ;
17
17
dotRadius ?: number | string ;
Original file line number Diff line number Diff line change 1
1
import styles from "./dots2.module.scss" ;
2
2
import { Base , BaseProps } from "../../common" ;
3
3
4
- interface Dots2Props extends BaseProps {
4
+ export interface Dots2Props extends BaseProps {
5
5
/** Radius of the dots in pixels or a string with a length unit. */
6
6
dotRadius ?: number | string ;
7
7
}
You can’t perform that action at this time.
0 commit comments