| 123456789101112131415 |
- import { Ref } from './common';
- import { IPage } from './page';
- import { IUser } from './user';
- export type IAttachment = {
- page?: Ref<IPage>,
- creator?: Ref<IUser>,
- // virtual property
- filePathProxied: string,
- fileFormat: string,
- downloadPathProxied: string,
- originalName: string,
- };
|