@excalidraw/math
Version:
Excalidraw math functions
10 lines (9 loc) • 307 B
TypeScript
export declare const getTEXtChunk: (blob: Blob) => Promise<{
keyword: string;
text: string;
} | null>;
export declare const encodePngMetadata: ({ blob, metadata, }: {
blob: Blob;
metadata: string;
}) => Promise<Blob>;
export declare const decodePngMetadata: (blob: Blob) => Promise<string>;