Created
October 29, 2020 11:20
-
-
Save kryhtin/7d0500f010d7d1af5764d111e9dfa878 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async deleteCompanyDocument(companyId: string): Promise<any> { | |
const data = { | |
index: INDEX, | |
type: TYPE, | |
id: companyId.toString(), | |
}; | |
return await this.deleteIndex(data); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment