@pierre/diffs
Version:
10 lines (9 loc) • 408 B
TypeScript
import { Element } from "hast";
//#region src/utils/wrapTokenFragments.d.ts
declare const NO_TOKEN: unique symbol;
declare const MULTIPLE_TOKENS: unique symbol;
type TokenFragmentState = number | typeof NO_TOKEN | typeof MULTIPLE_TOKENS;
declare function wrapTokenFragments(container: Element): TokenFragmentState;
//#endregion
export { wrapTokenFragments };
//# sourceMappingURL=wrapTokenFragments.d.ts.map