UNPKG

468 BTypeScriptView Raw
1export interface SchemaPrintOptions {
2 /**
3 * Descriptions are defined as preceding string literals, however an older
4 * experimental version of the SDL supported preceding comments as
5 * descriptions. Set to true to enable this deprecated behavior.
6 * This option is provided to ease adoption and will be removed in v16.
7 *
8 * Default: false
9 */
10 commentDescriptions?: boolean;
11}
12export declare type Maybe<T> = null | undefined | T;