> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-eval-flywheel-swift-quickstart.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Type Alias: OnStatusChangeCallback

<ParamField body="OnStatusChangeCallback" type="(remainingSeconds, isDisabled) => void">
  Callback function for status changes during resend countdown.

  ## Returns

  `void`

  ```ts Example theme={null}
  export type OnStatusChangeCallback = (remainingSeconds: number, isDisabled: boolean) => void;
  ```

  <Expandable title="Parameters">
    <ParamField body="remainingSeconds" type="number">
      `number`

      Number of seconds remaining in the countdown
    </ParamField>

    <ParamField body="isDisabled" type="boolean">
      `boolean`

      Whether the resend functionality is currently disabled
    </ParamField>
  </Expandable>
</ParamField>
