> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt
> Use this file to discover all available pages before exploring further.

# 型エイリアス: OnStatusChangeCallback

<ParamField body="OnStatusChangeCallback" type="(remainingSeconds, isDisabled) => void">
  再送カウントダウン中のstatusの変化時に呼び出されるコールバック関数。

  <h2 id="returns">
    戻り値
  </h2>

  `void`

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

  <Expandable title="パラメータ">
    <ParamField body="remainingSeconds" type="number">
      `number`

      カウントダウンの残り秒数
    </ParamField>

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

      再送機能が現在無効かどうか
    </ParamField>
  </Expandable>
</ParamField>
