(http: HttpClient)
| 19 | private readonly orpc: OpenApiClient |
| 20 | |
| 21 | constructor(http: HttpClient) { |
| 22 | this.orpc = createOpenApiClient(http) |
| 23 | } |
| 24 | |
| 25 | async list(workspaceId: string, q?: { page?: number, limit?: number }): Promise<MemberListResponse> { |
| 26 | return this.orpc.workspaces.byWorkspaceId.members.get({ |
nothing calls this directly
no test coverage detected