@cllbk/ghl
Version:
A public Node.js compatible SDK for working with HighLevel's (GHL's) Version 2 API.
8 lines (7 loc) • 395 B
TypeScript
import { BadRequestDTO, UnauthorizedDTO, UnprocessableDTO } from "../../types/_global";
import type { LinksSearchResponseDTO } from "../../types/triggerLinks";
type ResponseTypes = LinksSearchResponseDTO | BadRequestDTO | UnauthorizedDTO | UnprocessableDTO;
declare const search: (options: {
locationId: string;
}, authToken: string) => Promise<ResponseTypes | null>;
export default search;