7 lines
264 B
JavaScript
7 lines
264 B
JavaScript
import { registerPlugin } from '@capacitor/core';
|
|
const SplashScreen = registerPlugin('SplashScreen', {
|
|
web: () => import('./web').then(m => new m.SplashScreenWeb()),
|
|
});
|
|
export * from './definitions';
|
|
export { SplashScreen };
|
|
//# sourceMappingURL=index.js.map
|