# leadin/11.0.7/scripts/iframe/constants.ts

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.0.7. 16 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.0.7/code/scripts/iframe/constants.ts
- Raw: https://pluginprobe.com/plugins/leadin/11.0.7/raw/scripts/iframe/constants.ts
- Modified: 2024-03-06T11:43:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/leadin/11.0.7/code/scripts/iframe/constants.ts#L10-L20`.

```typescript
export enum App {
  Forms,
  LiveChat,
  Plugin,
  PluginSettings,
  Background,
}

export const AppIframe = {
  [App.Forms]: 'integrated-form-app',
  [App.LiveChat]: 'integrated-livechat-app',
  [App.Plugin]: 'integrated-plugin-app',
  [App.PluginSettings]: 'integrated-plugin-app',
  [App.Background]: 'integrated-plugin-proxy',
} as const;

```
