@grandlinex/react-components
Version:
6 lines (5 loc) • 391 B
TypeScript
import React, { ElementRef } from 'react';
import { FilePlayerProps, MediaPlayerParentFunction } from '../lib';
export type FileAudioPlayerRefType = ElementRef<typeof FileAudiPlayer>;
export type FileAudioPlayerParentFunction = MediaPlayerParentFunction;
export declare const FileAudiPlayer: React.ForwardRefExoticComponent<FilePlayerProps & React.RefAttributes<MediaPlayerParentFunction>>;