@mistlog/typetype
Version:
A programming language designed for typescript type generation
32 lines (31 loc) • 768 B
TypeScript
/**
* identifier:
identifier-nondigit
identifier identifier-nondigit
identifier digit
*/
export interface IIdentifier {
kind: "Identifier";
name: string;
}
export declare function Identifier(): JSX.Element;
/**
* identifier-nondigit:
nondigit
universal-character-name
other implementation-defined characters
*/
export declare function IdentifierNonDigit(): JSX.Element;
/**
* nondigit: one of
a b c d e f g h i j k l m
n o p q r s t u v w x y z
A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z _
*/
export declare function NonDigit(): JSX.Element;
/**
* one of
0 1 2 3 4 5 6 7 8 9
*/
export declare function Digit(): JSX.Element;