ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.72 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/taxhyuvu/nodevenv/public_html/dp_taxhelplines/14/lib/node_modules/classnames/ |
Upload File : |
// LICENSE is MIT // // Copyright (c) 2018 // Dave Keen <http://www.keendevelopment.ch> // Adi Dahiya <https://github.com/adidahiya> // Jason Killian <https://github.com/JKillian> // Sean Kelley <https://github.com/seansfkelley> // Michal Adamczyk <https://github.com/mradamczyk> // Marvin Hagemeister <https://github.com/marvinhagemeister> declare namespace classNames { type Value = string | number | boolean | undefined | null; type Mapping = Record<string, unknown>; interface ArgumentArray extends Array<Argument> {} type Argument = Value | Mapping | ArgumentArray; } /** * A simple JavaScript utility for conditionally joining classNames together. */ declare function classNames(...args: classNames.ArgumentArray): string; export = classNames;