| 11 | export type EntityTypeValue = ValueOf<typeof ENTITY_TYPE>; |
| 12 | |
| 13 | export interface IEntity { |
| 14 | getName(): string; |
| 15 | getId(): string; |
| 16 | getType(): EntityTypeValue; |
| 17 | getRawEntity(): unknown; |
| 18 | getConfig(): unknown; |
| 19 | computeDifference(entity?: IEntity): Diff<unknown>[] | undefined; |
| 20 | } |
no outgoing calls
no test coverage detected