blob: 5af649e4d62d0b24ef82ce3c443abf706f513c3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
|