9 lines
233 B
TypeScript
9 lines
233 B
TypeScript
|
|
export const reachGoal = (goalName: string) => {
|
||
|
|
// @ts-ignore
|
||
|
|
if (typeof window.yaCounter68914120 !== undefined) {
|
||
|
|
// @ts-ignore
|
||
|
|
return window.yaCounter68914120.reachGoal(goalName);
|
||
|
|
}
|
||
|
|
|
||
|
|
return null;
|
||
|
|
};
|