@expo/metro-config
Version:
A Metro config for running React Native projects with the Metro bundler
13 lines (12 loc) • 318 B
TypeScript
interface HermesBundleOutput {
hbc: Uint8Array;
sourcemap: string | null;
}
type BuildHermesOptions = {
filename: string;
code: string;
map: string | null;
minify?: boolean;
};
export declare function buildHermesBundleAsync(options: BuildHermesOptions): Promise<HermesBundleOutput>;
export {};