diff options
| author | rxliuli <rxliuli@gmail.com> | 2025-11-04 05:03:50 +0800 |
|---|---|---|
| committer | rxliuli <rxliuli@gmail.com> | 2025-11-04 05:03:50 +0800 |
| commit | bce557cc2dc767628bed6aac87301a1be7c5431b (patch) | |
| tree | b51a051228d01fe3306cd7626d4a96768aadb944 /node_modules/@jet-app/app-store/tmp/src/api/models/accessibility.js | |
init commit
Diffstat (limited to 'node_modules/@jet-app/app-store/tmp/src/api/models/accessibility.js')
| -rw-r--r-- | node_modules/@jet-app/app-store/tmp/src/api/models/accessibility.js | 37 |
1 files changed, 37 insertions, 0 deletions
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 |
