Add CreateLinkEvent

This commit is contained in:
Bill 2021-07-28 16:28:57 -04:00
parent c572143268
commit 8be14aebb0
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import { GetNitroInstance } from './GetNitroInstance';
export function CreateLinkEvent(link: string): void
{
GetNitroInstance().createLinkEvent(link);
}

View File

@ -1,6 +1,7 @@
export * from './AddLinkEventTracker'; export * from './AddLinkEventTracker';
export * from './avatar'; export * from './avatar';
export * from './camera'; export * from './camera';
export * from './CreateLinkEvent';
export * from './GetCommunication'; export * from './GetCommunication';
export * from './GetConfiguration'; export * from './GetConfiguration';
export * from './GetConnection'; export * from './GetConnection';