keynote-parser2
Version:
A library for parsing Apple Keynote file
11 lines (10 loc) • 314 B
TypeScript
import type proto from '../proto/proto';
export type IwaData = Record<string, IwaArchiveInfoData>;
export interface IwaArchiveInfoData {
archiveInfo: proto.TSP.ArchiveInfo;
messages: IwaMessageInfoData[];
}
export interface IwaMessageInfoData<T = unknown> {
message: T;
messageProtoName: string;
}