9cfc0bbd42
- moved some components - added consistend namin scheme: (View)Assignment, (View)AssignmentPoll (View)AssignmentPollOption and (View)AssignmentRelatedUser. - Added precisionPipe, which needs to be added everywhere. - Cleaned up converting deciml fields (as strings in the REST API) to floats - The repository creates the View* structure and enabled user updates.
6 lines
137 B
TypeScript
6 lines
137 B
TypeScript
import { BaseViewModel } from './base-view-model';
|
|
|
|
export interface Updateable {
|
|
updateDependencies(update: BaseViewModel): void;
|
|
}
|