sticky-horse
Version:
With StickyHorse allow your users to send feedback to your team.
9 lines (8 loc) • 399 B
TypeScript
interface ApiKeyResponse {
resendKey: string;
stickyHorseKey: string;
}
export declare function GenerateUserApiKey(masterApiKey: string, userName?: string): Promise<ApiKeyResponse>;
export declare function revokeUserApiKey(masterApiKey: string, resendKey: string): Promise<void>;
export declare function validateApiKeys(masterApiKey: string, resendKey: string): Promise<boolean>;
export {};