astro-ghostcms/.pnpm-store/v3/files/17/5c5a2af1800887fad9bfeff7849...

11 lines
321 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { BackwardScanner } from './reader.js';
/**
* Check if given character code is a quote
*/
export declare function isQuote(c?: number): boolean;
/**
* Consumes quoted value, if possible
* @return Returns `true` is value was consumed
*/
export declare function consumeQuoted(scanner: BackwardScanner): boolean;