mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-05 11:30:04 +08:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { registerPlugin } from '@capacitor/core';
|
|
|
|
import type { HashcashPlugin } from './definitions';
|
|
|
|
const Hashcash = registerPlugin<HashcashPlugin>('Hashcash');
|
|
|
|
export * from './definitions';
|
|
export { Hashcash };
|