Interface PreferenceDataSchema

interface PreferenceDataSchema {
    patternProperties: {
        [name: string]: PreferenceDataProperty;
    };
    properties: {
        [name: string]: PreferenceDataProperty;
    };
    scope?: PreferenceScope;
    [name: string]: any;
}

Indexable

[name: string]: any

Properties

patternProperties: {
    [name: string]: PreferenceDataProperty;
}

Type declaration

properties: {
    [name: string]: PreferenceDataProperty;
}

Type declaration