epiphany/node_modules/@csstools/css-tokenizer/dist/code-points/code-points.d.ts
2023-12-09 22:48:07 -08:00

96 lines
2.5 KiB
TypeScript
Raw Blame History

/** ' */
export declare const APOSTROPHE = 39;
/** * */
export declare const ASTERISK = 42;
/** \b */
export declare const BACKSPACE = 8;
/** \r */
export declare const CARRIAGE_RETURN = 13;
/** \t */
export declare const CHARACTER_TABULATION = 9;
/** : */
export declare const COLON = 58;
/** , */
export declare const COMMA = 44;
/** @ */
export declare const COMMERCIAL_AT = 64;
/** \x7F */
export declare const DELETE = 127;
/** ! */
export declare const EXCLAMATION_MARK = 33;
/** \f */
export declare const FORM_FEED = 12;
/** . */
export declare const FULL_STOP = 46;
/** > */
export declare const GREATER_THAN_SIGN = 62;
/** - */
export declare const HYPHEN_MINUS = 45;
/** \x1F */
export declare const INFORMATION_SEPARATOR_ONE = 31;
/** E */
export declare const LATIN_CAPITAL_LETTER_E = 69;
/** e */
export declare const LATIN_SMALL_LETTER_E = 101;
/** { */
export declare const LEFT_CURLY_BRACKET = 123;
/** ( */
export declare const LEFT_PARENTHESIS = 40;
/** [ */
export declare const LEFT_SQUARE_BRACKET = 91;
/** < */
export declare const LESS_THAN_SIGN = 60;
/** \n */
export declare const LINE_FEED = 10;
/** \v */
export declare const LINE_TABULATION = 11;
/** _ */
export declare const LOW_LINE = 95;
/** \x10FFFF */
export declare const MAXIMUM_ALLOWED_CODEPOINT = 1114111;
/** \x00 */
export declare const NULL = 0;
/** # */
export declare const NUMBER_SIGN = 35;
/** % */
export declare const PERCENTAGE_SIGN = 37;
/** + */
export declare const PLUS_SIGN = 43;
/** " */
export declare const QUOTATION_MARK = 34;
/** <20> */
export declare const REPLACEMENT_CHARACTER = 65533;
/** \ */
export declare const REVERSE_SOLIDUS = 92;
/** } */
export declare const RIGHT_CURLY_BRACKET = 125;
/** ) */
export declare const RIGHT_PARENTHESIS = 41;
/** ] */
export declare const RIGHT_SQUARE_BRACKET = 93;
/** ; */
export declare const SEMICOLON = 59;
/** \u0E */
export declare const SHIFT_OUT = 14;
/** / */
export declare const SOLIDUS = 47;
/** \u20 */
export declare const SPACE = 32;
/** u */
export declare const LATIN_SMALL_LETTER_U = 117;
/** U */
export declare const LATIN_CAPITAL_LETTER_U = 85;
/** r */
export declare const LATIN_SMALL_LETTER_R = 114;
/** R */
export declare const LATIN_CAPITAL_LETTER_R = 82;
/** l */
export declare const LATIN_SMALL_LETTER_L = 108;
/** L */
export declare const LATIN_CAPITAL_LETTER_L = 76;
/** ? */
export declare const QUESTION_MARK = 63;
/** 0 */
export declare const DIGIT_ZERO = 48;
/** F */
export declare const LATIN_CAPITAL_LETTER_F = 70;