Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/schema/src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ export interface IJupyterCadDoc extends YDocument<IJupyterCadDocChange> {
setOutput(key: string, value: IPostResult): void;
removeOutput(key: string): void;

getSource(): JSONObject;
setSource(value: JSONObject | string): void;

getMetadata(key: string): string | undefined;
setMetadata(key: string, value: string): void;
removeMetadata(key: string): void;
Expand Down
Loading