16 lines
323 B
TypeScript
16 lines
323 B
TypeScript
import { ValuesOf } from '@iqser/common-ui/lib/utils';
|
|
|
|
export interface IChange {
|
|
dateTime: string;
|
|
analysisNumber: number;
|
|
type: ChangeType;
|
|
}
|
|
|
|
export const ChangeTypes = {
|
|
ADDED: 'ADDED',
|
|
CHANGED: 'CHANGED',
|
|
REMOVED: 'REMOVED',
|
|
} as const;
|
|
|
|
export type ChangeType = ValuesOf<typeof ChangeTypes>;
|