astro-ghostcms/.pnpm-store/v3/files/4e/1592e564679ef6eb98146d5e6c0...

12 lines
471 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { Abbreviation } from '@emmetio/abbreviation';
import type { Config } from '../config.js';
/**
* Parses given Emmet abbreviation into a final abbreviation tree with all
* required transformations applied
*/
export default function parse(abbr: string | Abbreviation, config: Config): Abbreviation;
/**
* Converts given abbreviation to string according to provided `config`
*/
export declare function stringify(abbr: Abbreviation, config: Config): string;