UNPKG

inlinable-runtime

Version:

JavaScript code inlining runtime utilities

6 lines (5 loc) 201 B
/** Name of the codec must match the file's name */ export type InlineCodecName = 'base64' | 'fflate-gzip'; export declare const codecs: { [name in InlineCodecName]?: (data: string) => unknown; };