Interface BrandfetchNodeParameters

Source
interface BrandfetchNodeParameters {
    domain?: string;
    download?: boolean;
    imageFormats?: ("png" | "svg")[];
    imageTypes?: ("logo" | "icon")[];
    operation?:
        | "company"
        | "color"
        | "font"
        | "industry"
        | "logo";
}

Properties§

Source§

readonly domain?: string

The domain name of the company

Source§

readonly download?: boolean

Name of the binary property to which to write the data of the read file

Source§

readonly imageFormats?: ("png" | "svg")[]

The image format in which the logo should be returned as Default: ["png"]

Source§

readonly imageTypes?: ("logo" | "icon")[]

Default: ["logo","icon"]

Source§

readonly operation?: "company" | "color" | "font" | "industry" | "logo"

Default: "logo"