D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
node_modules
/
music-metadata
/
lib
/
iff
/
Filename :
index.d.ts
back
Copy
import type { IGetToken } from 'strtok3'; /** * "EA IFF 85" Standard for Interchange Format Files * Ref: http://www.martinreddy.net/gfx/2d/IFF.txt */ export interface IChunkHeader { /** * A chunk ID (ie, 4 ASCII bytes) */ chunkID: string; /** * Number of data bytes following this data header */ chunkSize: number; } /** * "EA IFF 85" Standard for Interchange Format Files * Ref: http://www.martinreddy.net/gfx/2d/IFF.txt */ export interface IChunkHeader64 { /** * A chunk ID (ie, 4 ASCII bytes) */ chunkID: string; /** * Number of data bytes following this data header */ chunkSize: bigint; } /** * Common AIFF chunk header */ export declare const Header: IGetToken<IChunkHeader>;