@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
18 lines (17 loc) • 891 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkPropertyDefinition = exports.LinkPropertyDefinitionId = exports.LinkDisplaySettings = void 0;
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
const PropertyDefinition_1 = require("../PropertyDefinition");
class LinkDisplaySettings extends PropertyDefinition_1.PropertyDisplaySettingsBase {
}
exports.LinkDisplaySettings = LinkDisplaySettings;
exports.LinkPropertyDefinitionId = new models_1.Guid("be80c74a-d1e5-4c37-bd9d-951e47dd014a");
class LinkPropertyDefinition extends PropertyDefinition_1.PropertyDefinition {
constructor() {
super(...arguments);
this.id = exports.LinkPropertyDefinitionId;
this.typeName = "$Localize:Omnia.Ux.Properties.Definitions.Link;";
}
}
exports.LinkPropertyDefinition = LinkPropertyDefinition;