@techmely/utils
Version:
Collection of helpful JavaScript / TypeScript utils
7 lines (4 loc) • 305 B
TypeScript
import { StringEnum } from '@techmely/types';
declare const $: <K extends keyof HTMLElementTagNameMap>(tag: StringEnum<K>) => HTMLElementTagNameMap[K] | null;
declare const $$: <K extends keyof HTMLElementTagNameMap>(tag: StringEnum<K>) => NodeListOf<HTMLElementTagNameMap[K]> | null;
export { $, $$ };