isEnabled returns a boolean

pull/21833/head
James Salter 2021-07-28 16:42:56 +01:00
parent ce80e5a463
commit 13ef819ba6
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ export class PosthogAnalytics {
this.posthog.capture(eventName, properties);
}
public isEnabled() {
public isEnabled(): boolean {
return this.enabled;
}