Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
export interface DeviceCodeActivationMembers extends BaseMembers { /** * ユーザーが入力したデバイスコードを送信します。 * このアクションは、ユーザーがデバイスに表示されたコードを入力してフォームを送信したときにトリガーされます。 * * @param {object} payload - ユーザーが入力したコードおよびカスタムペイロードを含むオブジェクト。 * @param {string} payload.code - ユーザーが入力したデバイスコード。 * * @returns {Promise<void>} コードが正常に送信されると解決されるPromise。 * 送信に失敗した場合はエラーで拒否されます。 */ continue(payload: ContinueOptions): Promise<void>; }
Show パラメーター