jsfast
Version:
Fastjs(jsfast) is a useful, lightweight JavaScript library for any types of project.
6 lines (5 loc) • 312 B
TypeScript
import type { FastjsDom } from "./dom/dom-types";
import type { FastjsDomList } from "./dom/dom-list-types";
export declare function isUndefined(value: any): value is undefined;
export declare function isDom(value: any): value is FastjsDom;
export declare function isDomList(value: any): value is FastjsDomList;