attachment.ts 207 B

12345678910
  1. import type { IAttachment } from '@growi/core';
  2. import type { PaginateResult } from './mongoose-utils';
  3. export type IResAttachmentList = {
  4. data: {
  5. paginateResult: PaginateResult<IAttachment>
  6. }
  7. };