Skip to content

Commit 40e3461

Browse files
committed
Add doc comments to Example's properties
1 parent 52ecf01 commit 40e3461

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

compiler/src/model/metamodel.ts

+4
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,13 @@ export class Interface extends BaseType {
267267
* With the exception of using String as the 'value' type
268268
*/
269269
export class Example {
270+
/** Short description. */
270271
summary?: string
272+
/** Long description. */
271273
description?: string
274+
/** Embedded literal example. Mutually exclusive with `external_value` */
272275
value?: string
276+
/** A URI that points to the literal example */
273277
external_value?: string
274278
}
275279

0 commit comments

Comments
 (0)