mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import type { Workspace } from '@blocksuite/affine/store';
|
|
|
|
export interface InitFn {
|
|
(collection: Workspace, docId: string): Promise<void> | void;
|
|
id: string;
|
|
displayName: string;
|
|
description: string;
|
|
}
|