Interface GlobalKoadzConfigTypes

Interface representing the global configuration types for Koadz.

interface GlobalKoadzConfigTypes {
    user: { name: string; email: string; role?: string };
    credentials?: { accessKey: string; token: string };
}

Properties

Properties

user: { name: string; email: string; role?: string }

User information.

credentials?: { accessKey: string; token: string }

Credentials for accessing the platform (optional).