UNPKG

@callstack/repack-plugin-expo-modules

Version:

A plugin for @callstack/repack that integrates Expo Modules

16 lines (15 loc) 508 B
import type { Compiler, RspackPluginInstance } from '@rspack/core'; interface ExpoModulesPluginOptions { /** * Target application platform (e.g. `ios`, `android`). * * By default, the platform is inferred from `compiler.options.name` which is set by Re.Pack. */ platform?: string; } export declare class ExpoModulesPlugin implements RspackPluginInstance { private options; constructor(options?: ExpoModulesPluginOptions); apply(compiler: Compiler): void; } export {};