attachment.ts 223 B

1234567891011
  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. };