| 1234567891011121314151617181920 |
- import { IUser } from './user';
- export type IRevision = {
- body: string,
- author: IUser,
- hasDiffToPrev: boolean;
- createdAt: Date,
- updatedAt: Date,
- }
- export type IRevisionOnConflict = {
- revisionId: string,
- revisionBody: string,
- createdAt: Date,
- user: IUser
- }
- export type HasRevisionShortbody = {
- revisionShortBody?: string,
- }
|