UNPKG

@flexilla/utilities

Version:

Utilities package for flexilla library

21 lines (16 loc) 540 B
export declare const $$: (selector: string, parentElement?: HTMLElement) => HTMLElement[]; export declare const $: (selector: string, parentElement?: HTMLElement) => HTMLElement | null; /** * Find direct descendant Element * @param selector * @param parentElement * @returns */ export declare const $d: (selector: string, parentElement?: HTMLElement) => HTMLElement | undefined; /** * Ge * @param element * @returns */ export declare const $getEl: (element: HTMLElement | string) => HTMLElement; export { }