diff options
Diffstat (limited to 'src/client/documents/Documents.ts')
| -rw-r--r-- | src/client/documents/Documents.ts | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 324d80581..c75c10eb8 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -790,6 +790,10 @@ export namespace Docs {              return InstanceFromProto(Prototypes.get(DocumentType.SEARCH), new List<Doc>([]), options);          } +        export function ImageGrouperDocument(options: DocumentOptions = {}) { +            return InstanceFromProto(Prototypes.get(DocumentType.IMAGEGROUPER), undefined, options); +        } +          export function LoadingDocument(file: File | string, options: DocumentOptions) {              return InstanceFromProto(Prototypes.get(DocumentType.LOADING), undefined, { _height: 150, _width: 200, title: typeof file === 'string' ? file : file.name, ...options }, undefined, '');          }  | 
