Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
import type { LogLevel } from './log';
|
||||
export declare const useBufferUntilFirstFrame: ({ mediaRef, mediaType, onVariableFpsVideoDetected, pauseWhenBuffering, logLevel, mountTime, }: {
|
||||
mediaRef: React.RefObject<HTMLVideoElement | HTMLAudioElement | null>;
|
||||
mediaType: "video" | "audio";
|
||||
onVariableFpsVideoDetected: () => void;
|
||||
pauseWhenBuffering: boolean;
|
||||
logLevel: LogLevel;
|
||||
mountTime: number | null;
|
||||
}) => {
|
||||
isBuffering: () => boolean;
|
||||
bufferUntilFirstFrame: (requestedTime: number) => void;
|
||||
};
|
||||
Reference in New Issue
Block a user