UNPKG

keynote-parser2

Version:

A library for parsing Apple Keynote file

11 lines (10 loc) 339 B
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; };