Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Reporting] Remove any, improve telemetry schema for completeness #111212

Merged
merged 12 commits into from
Sep 8, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export class CsvGenerator {
data: dataTableCell,
}: {
column: string;
data: any;
data: unknown;
}): string => {
let cell: string[] | string | object;
// check truthiness to guard against _score, _type, etc
Expand Down
Loading