@@ -37,27 +37,27 @@ export class SettingsService {
3737}
3838
3939export class AppSettings {
40- // Whether the user has passed the onboarding flow.
40+ /** Whether the user has passed the onboarding flow. */
4141 onboardingComplete ! : boolean ;
42- // Telemetry settings
42+ /** Telemetry settings */
4343 telemetry ! : TelemetrySettings ;
4444}
4545
4646export class TelemetrySettings {
47- // Whether the anonymous metrics are enabled.
47+ /** Whether the anonymous metrics are enabled. */
4848 appMetricsEnabled ! : boolean ;
49- // Whether anonymous error reporting is enabled.
49+ /** Whether anonymous error reporting is enabled. */
5050 appErrorReportingEnabled ! : boolean ;
51- // Whether non-anonymous metrics are enabled.
51+ /** Whether non-anonymous metrics are enabled. */
5252 appNonAnonMetricsEnabled ! : boolean ;
5353}
5454
55- // Request updating the TelemetrySettings. Only the fields that are set are updated
55+ /** Request updating the TelemetrySettings. Only the fields that are set are updated */
5656export class TelemetryUpdate {
57- // Whether the anonymous metrics are enabled.
57+ /** Whether the anonymous metrics are enabled. */
5858 appMetricsEnabled ?: boolean | undefined ;
59- // Whether anonymous error reporting is enabled.
59+ /** Whether anonymous error reporting is enabled. */
6060 appErrorReportingEnabled ?: boolean | undefined ;
61- // Whether non-anonymous metrics are enabled.
61+ /** Whether non-anonymous metrics are enabled. */
6262 appNonAnonMetricsEnabled ?: boolean | undefined ;
6363}
0 commit comments