attachment.ts 218 B

12345678
  1. import type { HasObjectId, IAttachment } from '@growi/core';
  2. import type { PaginateResult } from './mongoose-utils';
  3. export type IResAttachmentList = {
  4. paginateResult: PaginateResult<IAttachment & HasObjectId>
  5. };