cleanview
Version:
Clean the content of html articles
6 lines (5 loc) • 426 B
TypeScript
import { HimalayaElement } from "../types/himalaya";
export declare function isComment(e: HimalayaElement): e is import("../types/himalaya").CommentElement;
export declare function isText(e: HimalayaElement): e is import("../types/himalaya").TextElement;
export declare function isNode(e: HimalayaElement): e is import("../types/himalaya").NodeElement;
export declare function isNodeWithChildren(e: HimalayaElement): boolean;