Type Alias KeyValues

KeyValues: {
    [key: string]:
        | string
        | number
        | boolean
        | string[]
        | number[];
}