diff options
author | bobzel <zzzman@gmail.com> | 2025-03-09 17:40:08 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-03-09 17:40:08 -0400 |
commit | df173b02ffb7e2937d20a02beec1815b3af7c34e (patch) | |
tree | d5f9f383581818d302e9d42fe6f12eb2632763e9 /src/client/documents/Documents.ts | |
parent | 1a48ccf57ae43bc582dcd7be453e0ad217d38828 (diff) |
removed simulation doc. fixed empty imageBox uploading. fixed script typechecking. fixed metadata doc. fixed setting background colors of docs that have a template.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 4b5979965..317bb7feb 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1150,9 +1150,5 @@ export namespace Docs { export function DelegateDocument(proto: Doc, options: DocumentOptions = {}) { return InstanceFromProto(proto, undefined, options); } - - export function SimulationDocument(options?: DocumentOptions) { - return InstanceFromProto(Prototypes.get(DocumentType.SIMULATION), undefined, { ...(options || {}) }); - } } } |