attachment.ts 301 B

123456789101112131415
  1. import { Ref } from './common';
  2. import { IPage } from './page';
  3. import { IUser } from './user';
  4. export type IAttachment = {
  5. page?: Ref<IPage>,
  6. creator?: Ref<IUser>,
  7. // virtual property
  8. filePathProxied: string,
  9. fileFormat: string,
  10. downloadPathProxied: string,
  11. originalName: string,
  12. };