Skip to content

Instantly share code, notes, and snippets.

@kryhtin
Created October 29, 2020 11:20
Show Gist options
  • Save kryhtin/7d0500f010d7d1af5764d111e9dfa878 to your computer and use it in GitHub Desktop.
Save kryhtin/7d0500f010d7d1af5764d111e9dfa878 to your computer and use it in GitHub Desktop.
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