mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-02 18:20:39 +08:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import type { Workspace } from '@affine-tools/utils/workspace';
|
|
import type { BaseContext } from 'clipanion';
|
|
|
|
export interface CliContext extends BaseContext {
|
|
workspace: Workspace;
|
|
}
|