File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ export default class Cli {
1616 return await this . tracker . requestConsentConfirmation ( consentArguments )
1717 }
1818
19+ async provideConsentQuestionAnswer ( consentArguments : ConsentArguments ) : Promise < boolean > {
20+ return await this . tracker . provideConsentQuestionAnswer ( consentArguments )
21+ }
22+
23+ async provideConsentConfirmAnswer ( consentArguments : ConsentArguments ) : Promise < boolean > {
24+ return await this . tracker . provideConsentConfirmAnswer ( consentArguments )
25+ }
26+
1927 async trackUsage ( trackUsageArguments : TrackUsageArguments ) : Promise < void > {
2028 return await this . tracker . trackUsage ( trackUsageArguments )
2129 }
Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ export default class Web {
1616 return await this . tracker . requestConsentConfirmation ( consentArguments )
1717 }
1818
19+ async provideConsentQuestionAnswer ( consentArguments : ConsentArguments ) : Promise < boolean > {
20+ return await this . tracker . provideConsentQuestionAnswer ( consentArguments )
21+ }
22+
23+ async provideConsentConfirmAnswer ( consentArguments : ConsentArguments ) : Promise < boolean > {
24+ return await this . tracker . provideConsentConfirmAnswer ( consentArguments )
25+ }
26+
1927 async trackUsage ( trackUsageArguments : TrackUsageArguments ) : Promise < void > {
2028 return await this . tracker . trackUsage ( trackUsageArguments )
2129 }
You can’t perform that action at this time.
0 commit comments