UNPKG

@keadex/mina-live

Version:

Web porting of the Keadex Mina application.

18 lines (17 loc) 499 B
export = withMinaLive; /** * @typedef {Object} MinaLiveOptions * @property {String | undefined} minaLivePackageAlias */ /** * Returns the webpack configuration to use Mina Live * @param {MinaLiveOptions | undefined} minaLiveOptions * @returns */ declare function withMinaLive(minaLiveOptions: MinaLiveOptions | undefined): (nextjsConfig: any) => any; declare namespace withMinaLive { export { MinaLiveOptions }; } type MinaLiveOptions = { minaLivePackageAlias: string | undefined; };