OpenClaw SDK
    Preparing search index...

    Interface StaticCredentialsConfig

    interface StaticCredentialsConfig {
        token?: string;
        device?: DeviceCredentials;
        bootstrapToken?: string;
        password?: { username: string; password: string };
        refreshToken?: (currentToken: string | null) => Promise<string | null>;
    }
    Index

    Properties

    token?: string
    bootstrapToken?: string
    password?: { username: string; password: string }
    refreshToken?: (currentToken: string | null) => Promise<string | null>