Type Alias ObjectNested

ObjectNested: {
    [key: string]:
        | string
        | boolean
        | number
        | ObjectNested
        | undefined;
}