philliplm-react-modern-audio-player
Version:
<p align="center"> <img width="20%" src="https://user-images.githubusercontent.com/70849655/180391190-2b268d23-c9f3-4e95-9fce-090897842c04.png" alt="rm-audio-player" /> <h1 align="center">React Modern Audio Player</h1> </p>
8 lines (7 loc) • 390 B
TypeScript
import { FC, PropsWithChildren } from "react";
import { DOMRefValue } from "@react-types/shared";
import { ProviderProps } from "@react-types/provider";
export interface SpectrumProviderProps {
rootContainerProps?: Omit<ProviderProps & React.RefAttributes<DOMRefValue<HTMLDivElement>>, "children">;
}
export declare const SpectrumProvider: FC<PropsWithChildren<SpectrumProviderProps>>;