File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/**
22 * The shape of an `object` for the error message that contains a possible solution to the described problem.
3+ * @param fix A possible solution to the described problem of a `string` type.
4+ * @param problem Description of validation problem of a string type.
5+ * @param template An optional message template of a `string` type.
36 */
47export interface ErrorMessage {
58 /**
6- * Possible solution to the described problem of a `string` type.
9+ * A possible solution to the described problem of a `string` type.
710 */
811 fix : string ;
12+
913 /**
10- * Error problem of a `string` type.
14+ * Description of validation problem of a `string` type.
1115 */
1216 problem : string ;
17+
18+ /**
19+ * An optional message template of a `string` type.
20+ */
21+ template ?: string ;
1322}
You can’t perform that action at this time.
0 commit comments