| 45 | } |
| 46 | |
| 47 | export class MasterDescriptor implements IDataDescriptor<Master> { |
| 48 | restArrayField = "masters"; |
| 49 | fieldId: string = "masterid"; |
| 50 | |
| 51 | parse(accessor: IDataAccessor, object: any) { |
| 52 | return new Master(accessor, object); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | export const masterDescriptor = new MasterDescriptor(); |
nothing calls this directly
no outgoing calls
no test coverage detected