Interface Company

interface Company {
    domain: null | string;
    name: null | string;
    type:
        | null
        | "business"
        | "education"
        | "government"
        | "hosting"
        | "isp";
}

Properties

Properties

domain: null | string
name: null | string
type:
    | null
    | "business"
    | "education"
    | "government"
    | "hosting"
    | "isp"