Type Alias Serial

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