(r: GoogleFormsResponse)
| 135 | } |
| 136 | |
| 137 | const normalizeResponse = (r: GoogleFormsResponse): Record<string, unknown> => ({ |
| 138 | responseId: r.responseId, |
| 139 | createTime: r.createTime, |
| 140 | lastSubmittedTime: r.lastSubmittedTime, |
| 141 | answers: normalizeAnswers(r.answers as unknown), |
| 142 | }) |
| 143 | |
| 144 | // Distinguish single vs list response shapes |
| 145 | const isList = (obj: unknown): obj is GoogleFormsResponseList => |
no test coverage detected