| 45 | export const GetAllParents = Request.tagged<GetAllParents>("GetAllParents") |
| 46 | |
| 47 | export interface GetParentChildren extends Request.Request<ReadonlyArray<Child>> { |
| 48 | readonly _tag: "GetParentChildren" |
| 49 | readonly id: number |
| 50 | } |
| 51 | |
| 52 | export const GetParentChildren = Request.tagged<GetParentChildren>("GetParentChildren") |
| 53 |