File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ type Options = {|
68
68
* Descriptions are defined as preceding string literals, however an older
69
69
* experimental version of the SDL supported preceding comments as
70
70
* descriptions. Set to true to enable this deprecated behavior.
71
+ * This option is provided to ease adoption and will be removed in v16.
71
72
*
72
73
* Default: false
73
74
*/
Original file line number Diff line number Diff line change @@ -38,7 +38,17 @@ import {
38
38
} from '../type/directives' ;
39
39
import { isIntrospectionType } from '../type/introspection' ;
40
40
41
- type Options = { | commentDescriptions ?: boolean | } ;
41
+ type Options = { |
42
+ /**
43
+ * Descriptions are defined as preceding string literals, however an older
44
+ * experimental version of the SDL supported preceding comments as
45
+ * descriptions. Set to true to enable this deprecated behavior.
46
+ * This option is provided to ease adoption and will be removed in v16.
47
+ *
48
+ * Default: false
49
+ */
50
+ commentDescriptions ? : boolean ,
51
+ | } ;
42
52
43
53
/**
44
54
* Accepts options as a second argument:
You can’t perform that action at this time.
0 commit comments