mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 16:09:18 +00:00
12 lines
464 B
TypeScript
12 lines
464 B
TypeScript
import { HTMLAttributes, ReactNode } from "react";
|
|
//#region src/player/container.d.ts
|
|
interface ContainerProps extends HTMLAttributes<HTMLDivElement> {
|
|
children?: ReactNode;
|
|
}
|
|
declare const Container: import("react").ForwardRefExoticComponent<ContainerProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
declare namespace Container {
|
|
type Props = ContainerProps;
|
|
}
|
|
//#endregion
|
|
export { Container, ContainerProps };
|
|
//# sourceMappingURL=container.d.ts.map
|