Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions
@@ -0,0 +1,27 @@
import type { MediaParserLogLevel } from './log';
import type { M3uPlaylistContext } from './options';
import type { SeekingHints } from './seeking-hints';
import type { AvcState } from './state/avc/avc-state';
import type { IsoBaseMediaState } from './state/iso-base-media/iso-state';
import type { M3uState } from './state/m3u-state';
import type { WebmState } from './state/matroska/webm';
import type { RiffState } from './state/riff';
import type { StructureState } from './state/structure';
import type { TransportStreamState } from './state/transport-stream/transport-stream';
import type { MediaSectionState } from './state/video-section';
import type { SeekResolution } from './work-on-seek-request';
export declare const getSeekingByte: ({ info, time, logLevel, currentPosition, isoState, transportStream, webmState, mediaSection, m3uPlaylistContext, structure, riffState, m3uState, avcState, }: {
info: SeekingHints;
time: number;
logLevel: MediaParserLogLevel;
currentPosition: number;
isoState: IsoBaseMediaState;
transportStream: TransportStreamState;
webmState: WebmState;
mediaSection: MediaSectionState;
structure: StructureState;
m3uPlaylistContext: M3uPlaylistContext | null;
riffState: RiffState;
m3uState: M3uState;
avcState: AvcState;
}) => Promise<SeekResolution>;