AK-21/Graphite-Industrial-Intelligence
0
1/**2 * Classify whether a code represents whitespace, punctuation, or something3 * else.4 *5 * Used for attention (emphasis, strong), whose sequences can open or close6 * based on the class of surrounding characters.7 *8 * > ๐ **Note**: eof (`null`) is seen as whitespace.9 *10 * @param {Code} code11 * Code.12 * @returns {typeof constants.characterGroupWhitespace | typeof constants.characterGroupPunctuation | undefined}13 * Group.14 */15export function classifyCharacter(code: Code): typeof constants.characterGroupWhitespace | typeof constants.characterGroupPunctuation | undefined;16import type { Code } from 'micromark-util-types';17import { constants } from 'micromark-util-symbol';18//# sourceMappingURL=index.d.ts.map