Files
Fluxup_PAP/node_modules/@expo/metro-config/build/serializer/exportHermes.d.ts
2026-03-10 16:18:05 +00:00

14 lines
343 B
TypeScript

interface HermesBundleOutput {
hbc: Uint8Array;
sourcemap: string | null;
}
type BuildHermesOptions = {
projectRoot: string;
filename: string;
code: string;
map: string | null;
minify?: boolean;
};
export declare function buildHermesBundleAsync(options: BuildHermesOptions): Promise<HermesBundleOutput>;
export {};