mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 00:46:45 +01:00
4ad3928c74
We want to experiment with some conditional licensing of frontend code via the ee folder. --------- Co-authored-by: Paul D'Ambra <paul@posthog.com>
14 lines
249 B
TypeScript
14 lines
249 B
TypeScript
import { PostHogEE } from '@posthog/ee/types'
|
|
|
|
const myTestCode = (): void => {
|
|
// eslint-disable-next-line no-console
|
|
console.log('it works!')
|
|
}
|
|
|
|
const postHogEE: PostHogEE = {
|
|
enabled: true,
|
|
myTestCode,
|
|
}
|
|
|
|
export default postHogEE
|