mirror of
https://github.com/OFFIS-ESC/constellation-analyzer
synced 2026-01-26 23:43:40 +00:00
Fix executeTypeTransaction type definition to include documentId parameter
The type definition in workspace/types.ts was missing the optional documentId parameter that was added to the implementation. Co-authored-by: jhbruhn <1036566+jhbruhn@users.noreply.github.com>
This commit is contained in:
parent
8051a466f8
commit
b93b36664e
1 changed files with 2 additions and 1 deletions
|
|
@ -117,6 +117,7 @@ export interface WorkspaceActions {
|
||||||
executeTypeTransaction: <T>(
|
executeTypeTransaction: <T>(
|
||||||
operation: () => T,
|
operation: () => T,
|
||||||
rollback: () => void,
|
rollback: () => void,
|
||||||
operationName: string
|
operationName: string,
|
||||||
|
documentId?: string
|
||||||
) => T | null;
|
) => T | null;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue