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

11 lines
321 B
Plaintext

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;