mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 00:46:45 +01:00
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
|