@servicenow/sdk - v4.7.0
    Preparing search index...
    interface sp_css_include {
        lazy_load: Typed<
            boolean,
            {
                label: [
                    {
                        hint: "Lazy load css include";
                        label: "Lazy Load";
                        language: "en";
                        plural: "Lazy Loads";
                    },
                ];
            },
        >;
        name: Typed<string, { label: "Name" }>;
        rtl_css_file_url: Typed<
            string
            | number,
            {
                columnType: "url";
                label: [
                    {
                        hint: "If provided, this CSS file will be used when language directionality is Right to left";
                        label: "RTL CSS file URL";
                        language: "en";
                        plural: "RTL CSS file URLs";
                    },
                ];
                maxLength: 1024;
            },
        >;
        source: Typed<
            "url"
            | "local",
            {
                choices: {
                    local: { label: "Style Sheet"; sequence: 0 };
                    url: { label: "URL"; sequence: 1 };
                };
                default: "local";
                dropdown: "dropdown_without_none";
                label: "Source";
            },
        >;
        sp_css: Typed<
            | string
            | ExplicitKey<"sp_css">
            | TableBrand<"sp_css">
            | Record<"sp_css">,
            {
                attributes: { encode_utf8: false };
                cascadeRule: "delete";
                label: "Style sheet";
                referenceTable: "sp_css";
            },
        >;
        sys_id: Typed<
            string
            | number,
            { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
        >;
        url: Typed<
            string
            | number,
            { columnType: "url"; label: "CSS file URL"; maxLength: 1024 },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    lazy_load: Typed<
        boolean,
        {
            label: [
                {
                    hint: "Lazy load css include";
                    label: "Lazy Load";
                    language: "en";
                    plural: "Lazy Loads";
                },
            ];
        },
    >
    name: Typed<string, { label: "Name" }>
    rtl_css_file_url: Typed<
        string
        | number,
        {
            columnType: "url";
            label: [
                {
                    hint: "If provided, this CSS file will be used when language directionality is Right to left";
                    label: "RTL CSS file URL";
                    language: "en";
                    plural: "RTL CSS file URLs";
                },
            ];
            maxLength: 1024;
        },
    >
    source: Typed<
        "url"
        | "local",
        {
            choices: {
                local: { label: "Style Sheet"; sequence: 0 };
                url: { label: "URL"; sequence: 1 };
            };
            default: "local";
            dropdown: "dropdown_without_none";
            label: "Source";
        },
    >
    sp_css: Typed<
        string
        | ExplicitKey<"sp_css">
        | TableBrand<"sp_css">
        | Record<"sp_css">,
        {
            attributes: { encode_utf8: false };
            cascadeRule: "delete";
            label: "Style sheet";
            referenceTable: "sp_css";
        },
    >
    sys_id: Typed<
        string
        | number,
        { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
    >
    url: Typed<
        string
        | number,
        { columnType: "url"; label: "CSS file URL"; maxLength: 1024 },
    >