remotion
Version:
Make videos programmatically
15 lines (14 loc) • 715 B
TypeScript
import React from 'react';
import type { RemotionAudioProps } from './props.js';
type AudioForPreviewProps = RemotionAudioProps & {
readonly shouldPreMountAudioTags: boolean;
readonly onDuration: (src: string, durationInSeconds: number) => void;
readonly pauseWhenBuffering: boolean;
readonly _remotionInternalNativeLoopPassed: boolean;
readonly _remotionInternalStack: string | null;
readonly showInTimeline: boolean;
readonly stack?: string | undefined;
readonly onNativeError: React.ReactEventHandler<HTMLAudioElement>;
};
export declare const AudioForPreview: React.ForwardRefExoticComponent<Omit<AudioForPreviewProps, "ref"> & React.RefAttributes<HTMLAudioElement>>;
export {};