added missing typedoc

This commit is contained in:
lotte
2020-09-04 12:30:29 +02:00
parent d7f6885232
commit 48ffb2105f
4 changed files with 94 additions and 3 deletions

View File

@@ -1,7 +1,17 @@
import { Injectable } from '@angular/core';
/**
* Abstract class representing a service for handling Klaro consent preferences and UI
*/
@Injectable()
export abstract class KlaroService {
/**
* Initializes the service
*/
abstract initialize();
/**
* Shows a the dialog with the current consent preferences
*/
abstract showSettings();
}