> ## 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.

# Alias de type : OnStatusChangeCallback

<ParamField body="OnStatusChangeCallback" type="(remainingSeconds, isDisabled) => void">
  Fonction de rappel pour les changements d’état pendant le compte à rebours avant le renvoi.

  ## Valeur de retour

  `void`

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

  <Expandable title="Paramètres">
    <ParamField body="remainingSeconds" type="number">
      `number`

      Nombre de secondes restantes avant la fin du compte à rebours
    </ParamField>

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

      Indique si la fonctionnalité de renvoi est actuellement désactivée
    </ParamField>
  </Expandable>
</ParamField>
