index.d.ts 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  1. /**
  2. * @link https://docs.premid.app/dev/presence/class#presencedata-interface
  3. */
  4. interface BasePresenceData {
  5. /**
  6. * Name to show in activity
  7. * @example "YouTube"
  8. * @since 2.6
  9. */
  10. name?: string
  11. /**
  12. * Type of activity.
  13. *
  14. * @example
  15. * - ActivityType.Playing: "Playing [name]"
  16. * - ActivityType.Listening: "Listening to [name]"
  17. * - ActivityType.Watching: "Watching [name]"
  18. * - ActivityType.Competing: "Competing in [name]"
  19. *
  20. * @since 2.6
  21. */
  22. type?: ActivityType
  23. /**
  24. * Top row of the status
  25. *
  26. * Supports:
  27. *
  28. * `String`: A string
  29. *
  30. * `Node`: An element to use (it will use `.textContent`)
  31. */
  32. details?: string | Node | null
  33. /**
  34. * Bottom row of the status
  35. *
  36. * Supports:
  37. *
  38. * `String`: A string
  39. *
  40. * `Node`: An element to use (it will use `.textContent`)
  41. */
  42. state?: string | Node | null
  43. /**
  44. * Timestamp in seconds or milliseconds for the start of the activity.
  45. * Including this will show time as "elapsed"
  46. */
  47. startTimestamp?: number | Date | null
  48. /**
  49. * Timestamp in seconds or milliseconds until the end of the activity.
  50. * Including this will show time as "remaining" and it takes priority over startTimestamp
  51. */
  52. endTimestamp?: number | Date | null
  53. /**
  54. * Will display as the large profile artwork
  55. *
  56. * Supports:
  57. *
  58. * `String`: An URL to the image or a base64 encoded image
  59. *
  60. * `Blob`: A blob of the image
  61. *
  62. * `HTMLImageElement`: An image element to use (it will be converted to a blob)
  63. */
  64. largeImageKey?: string | Blob | HTMLImageElement | null
  65. /**
  66. * Will display as the small profile artwork
  67. *
  68. * Supports:
  69. *
  70. * `String`: An URL to the image or a base64 encoded image
  71. *
  72. * `Blob`: A blob of the image
  73. *
  74. * `HTMLImageElement`: An image element to use (it will be converted to a blob)
  75. */
  76. smallImageKey?: string | Blob | HTMLImageElement | null
  77. /**
  78. * Tooltip for the largeImageKey
  79. *
  80. * Supports:
  81. *
  82. * `String`: A string
  83. *
  84. * `Node`: An element to use (it will use `.textContent`)
  85. * @since 2.6
  86. */
  87. largeImageText?: string | Node | null
  88. /**
  89. * Tooltip for the smallImageKey
  90. *
  91. * Supports:
  92. *
  93. * `String`: A string
  94. *
  95. * `Node`: An element to use (it will use `.textContent`)
  96. */
  97. smallImageText?: string | Node | null
  98. /**
  99. * Array of buttons, max 2, label is the button text, and url is the link
  100. */
  101. buttons?: [ButtonData, ButtonData?]
  102. }
  103. interface MediaPresenceData extends BasePresenceData {
  104. type: ActivityType.Listening | ActivityType.Watching
  105. largeImageText?: string | Node | null
  106. }
  107. interface NonMediaPresenceData extends BasePresenceData {
  108. type?: Exclude<ActivityType, ActivityType.Listening | ActivityType.Watching>
  109. largeImageText?: never
  110. }
  111. type PresenceData = MediaPresenceData | NonMediaPresenceData
  112. interface ButtonData {
  113. /**
  114. * Text for the button
  115. *
  116. * Supports:
  117. *
  118. * `String`: A string
  119. *
  120. * `Node`: An element to use (it will use `.textContent`)
  121. */
  122. label: string | Node | null
  123. /**
  124. * URL of button link
  125. *
  126. * Supports:
  127. *
  128. * `String`: A string
  129. *
  130. * `HTMLAnchorElement`: An anchor element to use (it will use `.href`)
  131. */
  132. url: string | HTMLAnchorElement | null
  133. }
  134. interface PresenceDataFinal {
  135. state?: string
  136. details?: string
  137. startTimestamp?: number | Date
  138. endTimestamp?: number | Date
  139. largeImageKey?: string
  140. smallImageKey?: string
  141. smallImageText?: string
  142. buttons?: { label: string, url: string }[]
  143. }
  144. interface PresenceDataFull extends PresenceDataFinal {
  145. largeImageText?: string
  146. }
  147. /**
  148. * Options that change the behavior of the presence
  149. */
  150. interface PresenceOptions {
  151. /**
  152. * ClientId of Discord application
  153. * @link https://docs.premid.app/dev/presence/class#clientid
  154. */
  155. clientId: string
  156. /**
  157. * The `UpdateData` event for both the presence and the iframe
  158. * will only be fired when the page has fully loaded.
  159. */
  160. injectOnComplete?: boolean
  161. }
  162. /**
  163. * Contains basic information about the presece
  164. * @link https://docs.premid.app/dev/presence/metadata
  165. */
  166. interface Metadata {
  167. /**
  168. * Should contain Object with name and id of the presence developer.
  169. *
  170. * Name is your Discord username without the identifier(#0000).
  171. *
  172. * User id can be copied from Discord by enabling developer mode and right-clicking on your profile.
  173. */
  174. author: Contributor
  175. /**
  176. * Should contain an Array of Objects with each Object having the name and id of the contributor.
  177. *
  178. * Name is your Discord username without the identifier(#0000).
  179. *
  180. * User id can be copied from Discord by enabling developer mode and right-clicking on your profile.
  181. */
  182. contributors?: Contributor[]
  183. /**
  184. * The title of the service that this presence supports. The folder name and service name should also be the same.
  185. */
  186. service: string
  187. /**
  188. * Alternative titles for the service which can be used for searching in the store.
  189. *
  190. * Useful for services that have different names in different countries or for services which have spaces in them, you can remove the space in the alternative name for easier searching.
  191. *
  192. * Note: This is **NOT** used for tags! Only for alternative names!
  193. */
  194. altnames?: string[]
  195. /**
  196. * Small description of the service.
  197. *
  198. * Your description must have key pair values which indicate the language, and the description in that specific language.
  199. *
  200. * Make descriptions with the languages that you know, our translators will make changes to your metadata file.
  201. *
  202. * Visit the link for all the language IDs.
  203. * @link https://api.premid.app/v2/langFile/list
  204. */
  205. description: Record<string, string>
  206. /**
  207. * URL of the service.
  208. *
  209. * Example: `vk.com`
  210. *
  211. * This url must match the url of the website as it will be used to detect wherever or not this is the website to inject the script to.
  212. *
  213. * This may only be used as an array when there are more than one urls.
  214. *
  215. * Note: Do **NOT** add `http://` or `https://` in the url or it will not work.
  216. */
  217. url: string | string[]
  218. /**
  219. * Version of your presence.
  220. *
  221. * Use Sematic Versioning; <MAJOR>.<MINOR>.<PATCH>
  222. *
  223. * @link https://semver.org/
  224. */
  225. version: string
  226. /**
  227. * Link to service's logo.
  228. *
  229. * Must be an imgur link ending with .png/.jpg/.jpeg/.gif.
  230. */
  231. logo: string
  232. /**
  233. * Link to service's thumbnail or picture of the website.
  234. *
  235. * Must end with .png/.jpg/etc.
  236. */
  237. thumbnail: string
  238. /**
  239. * `#HEX` value.
  240. *
  241. * We recommend using a color that resembles the service the most.
  242. */
  243. color: string
  244. /**
  245. * Array with tags, they will help users to search your presence on the website.
  246. */
  247. tags: string[]
  248. /**
  249. * A string used to represent the category the presence falls under.
  250. *
  251. * @link https://docs.premid.app/dev/presence/metadata#presence-categories
  252. */
  253. category: 'anime' | 'games' | 'music' | 'socials' | 'videos' | 'other'
  254. /**
  255. * Defines whether `iFrames` are used.
  256. */
  257. iframe?: boolean
  258. /**
  259. * A regular expression string used to match urls.
  260. * @link https://docs.premid.app/dev/presence/metadata#regular-expressions
  261. */
  262. regExp?: string
  263. /**
  264. * A regular expression selector that selects iframes to inject into.
  265. * @link https://docs.premid.app/dev/presence/metadata#regular-expressions
  266. */
  267. iFrameRegExp?: string
  268. /**
  269. * Defines whether `getLogs()` is used.
  270. */
  271. readLogs?: boolean
  272. /**
  273. * Whether to include a "add presence" button on the store. Only available for partnered presences.
  274. *
  275. * @private
  276. */
  277. button?: boolean
  278. /**
  279. * Whether to display a warning on the presence installation page.
  280. */
  281. warning?: boolean
  282. /**
  283. * An array of settings the user can change.
  284. * @link https://docs.premid.app/dev/presence/metadata#presence-settings
  285. */
  286. settings?: {
  287. /**
  288. * Identifier of the setting, used to obtain its value through presence.getSetting()
  289. */
  290. id: string
  291. /**
  292. * Needed for every setting except if you use `multiLanguage`.
  293. */
  294. title?: string
  295. /**
  296. * Needed for every setting except if you use `multiLanguage`.
  297. */
  298. icon?: string
  299. /**
  300. * Record of conditions that need to be matched for the setting to appear.
  301. * The keys should be ids of other settings and the values should be the value they need to match.
  302. */
  303. if?: Record<string, string | number | boolean>
  304. /**
  305. * The text that appears in the background of string settings when nothing is in the input.
  306. */
  307. placeholder?: string
  308. /**
  309. * The default value of the setting.
  310. */
  311. value?: string | number | boolean
  312. /**
  313. * An array of values to be used as choices for the setting.
  314. * The returned value will be a number representing the index of the chosen option
  315. */
  316. values?: (string | number | boolean)[]
  317. /**
  318. * `true`: use this if you are only going to use strings from the [`general.json`](https://github.com/PreMiD/Localization/blob/main/src/Presence/general.json) file, and your <service>.json file.
  319. */
  320. multiLanguage?: true
  321. }[]
  322. }
  323. interface Contributor {
  324. /**
  325. * Name of the contributor on Discord.
  326. */
  327. name: string
  328. /**
  329. * Discord ID of the contributor.
  330. */
  331. id: string
  332. }
  333. interface PresenceClassSetActivityEvent {
  334. event: 'setActivity'
  335. data: { clientId: string, presenceData: PresenceDataFinal }
  336. }
  337. interface PresenceClassClearActivityEvent { event: 'clearActivity' }
  338. interface PresenceClassGetPresenceLetiableEvent {
  339. event: 'getPresenceLetiable'
  340. data: string
  341. nonce: string
  342. }
  343. interface PresenceClassGetPageVariablesEvent {
  344. event: 'getPageVariables'
  345. data: string[]
  346. nonce: string
  347. }
  348. interface PresenceClassReconnectEvent {
  349. event: 'reconnect'
  350. }
  351. type PresenceClassEvents =
  352. | PresenceClassSetActivityEvent
  353. | PresenceClassClearActivityEvent
  354. | PresenceClassGetPresenceLetiableEvent
  355. | PresenceClassGetPageVariablesEvent
  356. | PresenceClassReconnectEvent
  357. type ConsoleLogType = 'log' | 'info' | 'warn' | 'error'
  358. interface ConsoleLog<T = unknown> {
  359. id: string
  360. timestamp: number
  361. type: ConsoleLogType
  362. content: T
  363. }
  364. /**
  365. * Useful tools for developing presences
  366. * @link https://docs.premid.app/en/dev/presence/class
  367. */
  368. declare class Presence {
  369. private clientId
  370. private injectOnComplete
  371. private internalPresence
  372. private port
  373. private pmd
  374. private service
  375. private isTemporary
  376. private log
  377. private logInfo
  378. private logError
  379. private logSuccess
  380. /**
  381. * Create a new Presence
  382. */
  383. constructor(presenceOptions: PresenceOptions)
  384. private injectVariableGetter(): Promise<void>
  385. private connectToBackground(): void
  386. /**
  387. * Get the current activity
  388. * @link https://docs.premid.app/en/dev/presence/class#getactivity
  389. * @deprecated since 2.2.4
  390. */
  391. getActivity(): PresenceData
  392. /**
  393. * Sets the presence activity and sends it to the application.
  394. * @param data PresenceData or Slideshow
  395. * @link https://docs.premid.app/dev/presence/class#setactivitypresencedata-boolean
  396. */
  397. setActivity(
  398. data?: PresenceData | Slideshow,
  399. ): Promise<void>
  400. /**
  401. * @deprecated 2.5 - The `_playback` parameter is deprecated.
  402. * Sets the presence activity and sends it to the application.
  403. * @param data PresenceData or Slideshow
  404. * @param _playback DEPRECATED: Is presence playing
  405. * @link https://docs.premid.app/dev/presence/class#setactivitypresencedata-boolean
  406. */
  407. setActivity(
  408. data?: PresenceData | Slideshow,
  409. _playback?: boolean
  410. ): Promise<void>
  411. private getTextFromElement(element: string | Node): string | undefined
  412. private imageSrcToBlob
  413. private getImageFromElement(
  414. element: string | Blob | HTMLImageElement
  415. ): Promise<string | undefined>
  416. private uploadedBlobs
  417. private uploadBlob(blob: Blob): Promise<string | undefined>
  418. /**
  419. * Clears the activity shown in discord as well as the Tray and keybinds
  420. * @link https://docs.premid.app/dev/presence/class#clearactivity
  421. */
  422. clearActivity(): void
  423. /**
  424. * Get translations from the extension
  425. * @param strings String object with keys being the key for string, keyValue is the string value
  426. * @link https://docs.premid.app/dev/presence/class#getstringsobject
  427. */
  428. getStrings<
  429. T extends {
  430. [K: string]: string
  431. },
  432. >(strings: T): Promise<T>
  433. /**
  434. * @deprecated 2.5 - Passing language is deprecated
  435. * Get translations from the extension
  436. * @param strings String object with keys being the key for string, keyValue is the string value
  437. * @param _language DEPRECATED: Language to get strings for
  438. * @link https://docs.premid.app/dev/presence/class#getstringsobject
  439. */
  440. getStrings<
  441. T extends {
  442. [K: string]: string
  443. },
  444. >(strings: T, _language?: string): Promise<T>
  445. /**
  446. * Get letiables from the actual site
  447. * @param {Array} letiables Array of letiable names to get
  448. * @example let pagelet = getPageletiable('pagelet') -> "letiable content"
  449. * @link https://docs.premid.app/presence-development/coding/presence-class#getpageletiable-string
  450. * @deprecated 2.5 - Use getPageVariable instead
  451. */
  452. getPageletiable<T = unknown>(letiable: string): Promise<T>
  453. /**
  454. * Returns an array of the past 100 logs, you can filter these logs with a RegExp.
  455. * @param regExp Filter for the logs content
  456. * @param options Options for the logs
  457. */
  458. getLogs<T = unknown>(
  459. regExp?: RegExp,
  460. options?: {
  461. /**
  462. * Types of logs to get
  463. *
  464. * Default: `["log"]`
  465. */
  466. types?: ConsoleLogType[]
  467. /**
  468. * Whether to only get the content of the logs
  469. *
  470. * Default: `true`
  471. */
  472. contentOnly?: true
  473. }
  474. ): Promise<T[]>
  475. getLogs<T = unknown>(
  476. regExp?: RegExp,
  477. options?: {
  478. /**
  479. * Types of logs to get
  480. *
  481. * Default: `["log"]`
  482. */
  483. types?: ConsoleLogType[]
  484. /**
  485. * Whether to only get the content of the logs
  486. *
  487. * Default: `true`
  488. */
  489. contentOnly: false
  490. }
  491. ): Promise<ConsoleLog<T>[]>
  492. getLogs<T = unknown>(
  493. regExp?: RegExp,
  494. options?: {
  495. /**
  496. * Types of logs to get
  497. *
  498. * Default: `["log"]`
  499. */
  500. types?: ConsoleLogType[]
  501. /**
  502. * Whether to only get the content of the logs
  503. *
  504. * Default: `true`
  505. */
  506. contentOnly?: boolean
  507. }
  508. ): Promise<T[] | ConsoleLog<T>[]>
  509. /**
  510. * Returns extension version
  511. * @param onlyNumeric version number without dots
  512. * @link https://docs.premid.app/en/dev/presence/class#getextensionversionboolean
  513. * @since 2.1
  514. */
  515. getExtensionVersion(onlyNumeric?: boolean): string | number
  516. /**
  517. * Get a setting from the presence metadata
  518. * @param setting Id of setting as defined in metadata
  519. * @link https://docs.premid.app/dev/presence/class#getsettingstring
  520. * @since 2.1
  521. */
  522. getSetting<T extends string | boolean | number>(setting: string): Promise<T>
  523. /**
  524. * Hide a setting
  525. * @param setting Id of setting / Array of setting Id's
  526. * @link https://docs.premid.app/dev/presence/class#hidesettingstring
  527. * @since 2.1
  528. */
  529. hideSetting(settings: string | string[]): Promise<void>
  530. /**
  531. * Show a setting
  532. * @param setting Id of setting / Array of setting Id's
  533. * @link https://docs.premid.app/dev/presence/class#showsettingstring
  534. * @since 2.1
  535. */
  536. showSetting(settings: string | string[]): Promise<void>
  537. /**
  538. * Similar to `getTimestamps` but takes in a media element and returns snowflake timestamps
  539. * @param media Media object
  540. * @deprecated since 2.7.5 - Use the standalone `getTimestampsFromMedia` function instead: import { getTimestampsFromMedia } from 'premid'
  541. */
  542. getTimestampsfromMedia(media: HTMLMediaElement): [number, number]
  543. /**
  544. * Converts time and duration integers into snowflake timestamps
  545. * @param {number} elementTime Current element time seconds
  546. * @param {number} elementDuration Element duration seconds
  547. * @deprecated since 2.7.5 - Use the standalone `getTimestamps` function instead: import { getTimestamps } from 'premid'
  548. */
  549. getTimestamps(elementTime: number, elementDuration: number): [number, number]
  550. /**
  551. * Converts a string with format `HH:MM:SS` or `MM:SS` or `SS` into an integer (Does not return snowflake timestamp)
  552. * @param format The formatted string
  553. * @deprecated since 2.7.5 - Use the standalone `timestampFromFormat` function instead: import { timestampFromFormat } from 'premid'
  554. */
  555. timestampFromFormat(format: string): number
  556. /**
  557. * Console logs with an info message
  558. * @param message The log message
  559. */
  560. info(message: string): void
  561. /**
  562. * Console logs with a success message
  563. * @param message The log message
  564. */
  565. success(message: string): void
  566. /**
  567. * Console logs with an error message
  568. * @param message The log message
  569. */
  570. error(message: string): void
  571. /**
  572. * Creates a slideshow that allows for alternating between sets of
  573. * presence data at specific intervals
  574. */
  575. createSlideshow(): Slideshow
  576. /**
  577. * Get variables from the web page
  578. * Supports nested variables using dot notation (e.g. `document.title`)
  579. *
  580. * NOTE: This function can be very heavy if you are not directly accessing a variable with primitive value!
  581. * @param variables Variables to get
  582. * @since 2.5
  583. */
  584. getPageVariable<T extends Record<string, any> = Record<string, unknown>>(
  585. ...variables: string[]
  586. ): Promise<T>
  587. /**
  588. * Sends data back to application
  589. * @param event Event
  590. */
  591. private postEvent(data: PresenceClassEvents): void
  592. /**
  593. * Subscribe to events emitted by the extension
  594. * @param eventName EventName to subscribe to
  595. * @param callback Callback function for event
  596. * @link https://docs.premid.app/dev/presence/class#events
  597. */
  598. on<K extends keyof PresenceEvents>(
  599. eventName: K,
  600. listener: (...args: PresenceEvents[K]) => Awaitable<void>
  601. ): void
  602. }
  603. interface PresenceEvents {
  604. /**
  605. * Emitted on every tick, used to update the data displayed in the presence
  606. */
  607. UpdateData: []
  608. /**
  609. * Emitted when data is received from the iframe.ts file
  610. */
  611. iFrameData: [data: any]
  612. }
  613. type Awaitable<T> = Promise<T> | T
  614. /**
  615. * Minimum amount of time in ms between slide updates
  616. */
  617. declare const MIN_SLIDE_TIME: number
  618. /**
  619. * Represents a slideshow slide
  620. */
  621. declare class SlideshowSlide {
  622. id: string
  623. data: PresenceData
  624. private _interval
  625. constructor(id: string, data: PresenceData, interval: number)
  626. get interval(): number
  627. set interval(interval: number)
  628. /**
  629. * Updates the slide presenceData
  630. * Passing null will keep the original value
  631. * @param data The slide presenceData
  632. */
  633. updateData(data?: PresenceData): void
  634. /**
  635. * Updates the slide interval
  636. * Passing null will keep the original value
  637. * @param interval The slide interval
  638. */
  639. updateInterval(interval?: number): void
  640. }
  641. /**
  642. * Controller for alternating between multiple sets of
  643. * presence data at specific intervals
  644. */
  645. declare class Slideshow {
  646. private index
  647. private slides
  648. currentSlide: PresenceData
  649. constructor()
  650. /**
  651. * Sets the current slide
  652. */
  653. private pollSlide
  654. /**
  655. * Adds a slide to the queue
  656. * If a slide already exists with the given id, it will be updated with a new value
  657. * @param id The slide id
  658. * @param data The slide presenceData
  659. * @param interval Interval until next slide
  660. */
  661. addSlide(id: string, data: PresenceData, interval: number): SlideshowSlide
  662. /**
  663. * Deletes a slide from the queue
  664. * @param id The slide id
  665. */
  666. deleteSlide(id: string): void
  667. /**
  668. * Clears the queue
  669. */
  670. deleteAllSlides(): void
  671. /**
  672. * Updates a slide already in queue
  673. * Passing null will keep the old value
  674. * @param id The slide id
  675. * @param data The slide presenceData
  676. * @param interval Interval until next slide
  677. */
  678. updateSlide(
  679. id: string,
  680. data?: PresenceData,
  681. interval?: number
  682. ): SlideshowSlide
  683. /**
  684. * Returns if a slide exists in the queue
  685. * @param id The slide id
  686. */
  687. hasSlide(id: string): boolean
  688. /**
  689. * Returns all slides
  690. */
  691. getSlides(): SlideshowSlide[]
  692. }
  693. /**
  694. * Is used to gather information from iFrames
  695. * @link https://docs.premid.app/en/dev/presence/iframe
  696. */
  697. declare class iFrame {
  698. _events: any
  699. /**
  700. * Send data from iFrames back to the presence script
  701. * @param data Data to send
  702. * @link https://docs.premid.app/dev/presence/class#iframedata
  703. */
  704. send(data: any): void
  705. /**
  706. * Returns the iframe url
  707. * @link https://docs.premid.app/dev/presence/iframe#geturl
  708. * @since 2.0-BETA3
  709. */
  710. getUrl(): Promise<string>
  711. /**
  712. * Subscribe to events emitted by the extension
  713. * @param eventName
  714. * @param callback
  715. * @link https://docs.premid.app/dev/presence/class#updatedata
  716. */
  717. on<K extends keyof IFrameEvents>(
  718. eventName: K,
  719. listener: (...args: IFrameEvents[K]) => Awaitable<void>
  720. ): void
  721. }
  722. interface IFrameEvents {
  723. UpdateData: []
  724. }