We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d17386d commit ec4c0e4Copy full SHA for ec4c0e4
src/cst/DataType.ts
@@ -19,6 +19,7 @@ export type DataType =
19
20
export interface NamedDataType extends BaseNode {
21
type: "named_data_type";
22
+ // Note that the name can be an identifier, but only a quoted identifier.
23
name: Keyword | Keyword[] | Identifier;
24
params?: ParenExpr<ListExpr<Literal>> | GenericTypeParams;
25
}
0 commit comments