From bce557cc2dc767628bed6aac87301a1be7c5431b Mon Sep 17 00:00:00 2001 From: rxliuli Date: Tue, 4 Nov 2025 05:03:50 +0800 Subject: init commit --- .../app-store/tmp/src/api/models/accessibility.js | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 node_modules/@jet-app/app-store/tmp/src/api/models/accessibility.js (limited to 'node_modules/@jet-app/app-store/tmp/src/api/models/accessibility.js') diff --git a/node_modules/@jet-app/app-store/tmp/src/api/models/accessibility.js b/node_modules/@jet-app/app-store/tmp/src/api/models/accessibility.js new file mode 100644 index 0000000..5af649e --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/api/models/accessibility.js @@ -0,0 +1,37 @@ +import * as models from "./index"; +/** + * @public + * A model that represents an accessibility feature of a product. + */ +export class AccessibilityFeature extends models.Model { + constructor(title, description, artwork) { + super(); + this.title = title; + this.description = description; + this.artwork = artwork; + } +} +/** + * @public + * A model that represents a set of accessibility features of a product. + */ +export class AccessibilityFeatures extends models.ViewModel { + constructor(title, artwork, features) { + super(); + this.title = title; + this.artwork = artwork; + this.features = features; + } +} +/** + * @public + * A model that represents a paragraph of linkable text, displayed in the accessibility section. + */ +export class AccessibilityParagraph extends models.ViewModel { + constructor(text, actions) { + super(); + this.text = text; + this.actions = actions; + } +} +//# sourceMappingURL=accessibility.js.map \ No newline at end of file -- cgit v1.2.3