UNPKG

tiny-essentials

Version:

Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.

13 lines 497 B
export default check_domain; declare namespace check_domain { let validators: { type: string; /** * @deprecated */ callback: (req: import("express").Request, the_domain: string) => string | boolean | string[] | null | undefined; }[]; function validator(req: import("express").Request, the_domain: string): boolean; function get(req: import("express").Request): string | true | string[] | null; } //# sourceMappingURL=check_domain.d.mts.map