mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-18 04:31:10 +00:00
14 lines
410 B
TypeScript
14 lines
410 B
TypeScript
import type { AuthChoice, OnboardOptions } from "./onboard-types.js";
|
|
|
|
type OnboardCoreAuthOptionKey = Extract<keyof OnboardOptions, string>;
|
|
|
|
export type OnboardCoreAuthFlag = {
|
|
optionKey: OnboardCoreAuthOptionKey;
|
|
authChoice: AuthChoice;
|
|
cliFlag: `--${string}`;
|
|
cliOption: `--${string} <key>`;
|
|
description: string;
|
|
};
|
|
|
|
export const CORE_ONBOARD_AUTH_FLAGS: ReadonlyArray<OnboardCoreAuthFlag> = [];
|