@mintlify/common
Version:
Commonly shared code within Mintlify
7 lines (6 loc) • 372 B
TypeScript
import type { Program, Property } from 'estree-jsx';
import type { Root } from 'mdast';
export declare function isStringSafe(value: string): boolean;
export declare function filterStyleProperties(estree: Program): Program | null;
export declare function rebuildStyleValue(properties: Property[]): string;
export declare function remarkMdxRemoveJs(): (tree: Root) => void;