kuebiko/typings/byte.d.ts
2025-05-25 08:27:02 -05:00

16 lines
547 B
TypeScript

/** @import { ParserState } from './state.js' */
export const char: any;
export const tag: any;
export const charNoCase: any;
export const tagNoCase: any;
export function anyChar(state: any): any;
export const take: any;
export const oneOf: any;
export const noneOf: any;
export const digit: any;
export const lowerAlpha: any;
export const upperAlpha: any;
export const alpha: (state: ParserState) => any;
export const alphanumeric: (state: ParserState) => any;
export function eof(state: any): any;
import type { ParserState } from './state.js';