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

# 型エイリアス: OnStatusChangeCallback

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

  ## 戻り値

  `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>
