diff --git a/src/stores/workspace/types.ts b/src/stores/workspace/types.ts index f03f674..f9485cb 100644 --- a/src/stores/workspace/types.ts +++ b/src/stores/workspace/types.ts @@ -117,6 +117,7 @@ export interface WorkspaceActions { executeTypeTransaction: ( operation: () => T, rollback: () => void, - operationName: string + operationName: string, + documentId?: string ) => T | null; }