getting there

This commit is contained in:
eskimo
2024-10-03 13:45:22 -04:00
parent de6b28ab43
commit 7e77833452
8 changed files with 3657 additions and 21 deletions

View File

@@ -1,10 +1,2 @@
import { registerPlugin } from '@capacitor/core';
import type { SocketsPlugin } from './definitions';
const Sockets = registerPlugin<SocketsPlugin>('Sockets', {
web: () => import('./web').then((m) => new m.SocketsWeb()),
});
export * from './definitions';
export { Sockets };
import Socket from "./socket";
export { Socket };