Interface PreferenceSchema

interface PreferenceSchema {
    overridable?: boolean;
    properties: PreferenceSchemaProperties;
    scope?: "application" | PreferenceScope | "window" | "resource";
    title?: string;
    [name: string]: any;
}

Indexable

[name: string]: any

Properties

overridable?: boolean
scope?: "application" | PreferenceScope | "window" | "resource"
title?: string

The title of the preference schema. It is used in the preference UI to associate a localized group of preferences.