wk-nmi
Version:
This is a simple utility package
17 lines (16 loc) • 414 B
TypeScript
import type { Customer } from "../types/customerVault";
export declare class CustomerVault {
url: string;
org: string;
apikey: string;
constructor(url: string, org: string, apikey: string);
add(customer: Customer): Promise<{
response: null;
status: number;
message: string;
} | {
response: any;
status: number;
message?: undefined;
}>;
}