mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-14 08:36:22 +08:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { registerPlugin } from '@capacitor/core';
|
|
|
|
import type { AIButtonPlugin } from './definitions';
|
|
|
|
const AIButton = registerPlugin<AIButtonPlugin>('AIButton');
|
|
|
|
export * from './definitions';
|
|
export { AIButton };
|