keynote-parser2
Version:
A library for parsing Apple Keynote file
11 lines (10 loc) • 339 B
TypeScript
import type { IwaArchiveInfoData } from '../types';
/**
* Parse IWA protobuf archive info
*
* @see https://github.com/obriensp/iWorkFileFormat/blob/master/Docs/index.md#protobuf
*/
export declare const parseIwaProtobufArchiveInfo: (data: Buffer, cursor: number) => {
archiveInfoData: IwaArchiveInfoData;
nextCursor: number;
};