UNPKG
@technoapple/ga4
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
TypeScript Node.js library to support GA4 analytics.
github.com/technoapple/ga4
technoapple/ga4
@technoapple/ga4
/
src
/
types
/
dataLayer.ts
10 lines
(8 loc)
•
176 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
KeyValuePair
{ [
key
:
string
|
number
]:
any
; }
interface
DataLayerObject
extends
KeyValuePair
{
event
?:
string
;
value
?:
string
; }
export
{
DataLayerObject
};