attachment.ts 288 B

12345678910111213
  1. import type { IAttachmentHasId } from '@growi/core';
  2. import type { PaginateResult } from './mongoose-utils';
  3. export type IResAttachmentList = {
  4. paginateResult: PaginateResult<IAttachmentHasId>
  5. };
  6. export type ICheckLimitResult = {
  7. isUploadable: boolean,
  8. errorMessage?: string,
  9. }