diff --git a/src/index.ts b/src/index.ts index c0a8215..7356be7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,9 @@ -/** - * Some code reproducing a bug. - */ -export const bug = 123; +export class ContactManagement { + /** + * Constructor for the Contact management object. + * + * @param {contactData.dataType} [data={}] - The given contact values <--- line 95 + * @param {contactData.dataType} [data2={}] - The given contact values <--- line 95 + */ + public constructor(data = {}, data2 = {}) {} +} \ No newline at end of file