datasquirel/dist/package-shared/utils/grab-host-names.d.ts
Benjamin Toby 6593047efd Updates
2025-04-18 12:06:15 +01:00

20 lines
416 B
TypeScript

import https from "https";
import http from "http";
type GrabHostNamesReturn = {
host: string;
port: number | string;
scheme: typeof http | typeof https;
user_id: string | number;
};
type Param = {
userId?: string | number;
env?: {
[k: string]: string;
};
};
/**
* # Grab Names For Query
*/
export default function grabHostNames(param?: Param): GrabHostNamesReturn;
export {};