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

# ContinueOptions

メールによる認証チャレンジを続行するためのオプション。

```ts Example theme={null}
export interface ContinueOptions {
  /** ユーザーが入力したコード。 */
  code: string;
  /** デバイスを記憶するかどうかを示します。 */
  rememberDevice?: boolean;
  /** 追加のカスタムオプション */
  [key: string]: string | number | boolean | undefined;
}
```

<div id="properties">
  ## プロパティ
</div>

<ParamField body="code" type="string">
  ユーザーが入力するコード。
</ParamField>

<ParamField body="rememberDevice?" type="boolean">
  デバイスを今後も記憶するかどうかを示します。
</ParamField>
