@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
18 lines (17 loc) • 891 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextPropertyDefinition = exports.textPropertyDefinitionId = exports.TextDisplaySettings = void 0;
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
const PropertyDefinition_1 = require("../PropertyDefinition");
class TextDisplaySettings extends PropertyDefinition_1.PropertyDisplaySettingsBase {
}
exports.TextDisplaySettings = TextDisplaySettings;
exports.textPropertyDefinitionId = new models_1.Guid("cbd461eb-6d34-4f1a-8ab8-08a220d92868");
class TextPropertyDefinition extends PropertyDefinition_1.PropertyDefinition {
constructor() {
super(...arguments);
this.id = exports.textPropertyDefinitionId;
this.typeName = "$Localize:Omnia.Ux.Properties.Definitions.Text;";
}
}
exports.TextPropertyDefinition = TextPropertyDefinition;