| 44 | } |
| 45 | |
| 46 | export class ChangesourceDescriptor implements IDataDescriptor<Changesource> { |
| 47 | restArrayField = "changesources"; |
| 48 | fieldId: string = "changesourceid"; |
| 49 | |
| 50 | parse(accessor: IDataAccessor, object: any) { |
| 51 | return new Changesource(accessor, object); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | export const changesourceDescriptor = new ChangesourceDescriptor(); |
nothing calls this directly
no outgoing calls
no test coverage detected