Merged PR 20675: removed readonly from models

removed readonly from models
This commit is contained in:
May Hartov 2019-02-28 11:52:46 +00:00
Родитель e38f1cfb95
Коммит 298c41e8f4
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1081,19 +1081,19 @@ const enum VisualDataRoleKindPreference {
export interface IVisualDataRole {
// Unique name for the VisualDataRole
readonly name: string;
name: string;
// Indicates the kind of role.
kind: VisualDataRoleKind;
// Indicates the visual preference on what role kind to use
readonly kindPreference?: VisualDataRoleKindPreference;
kindPreference?: VisualDataRoleKindPreference;
// The display name of the role.
readonly displayName?: string;
displayName?: string;
// The tooltip text
readonly description?: string;
description?: string;
}
export interface IVisualCapabilities {