> ## Documentation Index
> Fetch the complete documentation index at: https://audio-app-kit-docs.upgrade-api.int.bragi-dev.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Types

There are multiple types that can be used to ensure type safety of event payloads.

## Importing Types

<CodeGroup>
  ```typescript Typescript
  import { generalNotify, generalAction } from '@bragiai/audio-app-kit';
  // Usage: generalNotify.NetworkStatusPayload_ConnectionType.WIFI
  ```

  ```javascript Javascript (CommonJS)
  const { generalNotify, generalAction } = require('@bragiai/audio-app-kit');
  // Usage: generalNotify.NetworkStatusPayload_ConnectionType.WIFI
  ```

  ```javascript Javascript (ESM)
  import { generalNotify, generalAction } from '@bragiai/audio-app-kit';
  // Usage: generalNotify.NetworkStatusPayload_ConnectionType.WIFI
  ```
</CodeGroup>
