mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
5 lines
158 B
TypeScript
5 lines
158 B
TypeScript
export interface ServerContext {
|
|
registerCommand: (command: string, fn: (...args: any[]) => any) => void;
|
|
unregisterCommand: (command: string) => void;
|
|
}
|