mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-03-22 14:24:35 +00:00
* added feather-icons * added strictfunctiontypes * added intercom-client * splitting pull requests by package
14 lines
425 B
TypeScript
14 lines
425 B
TypeScript
// Type definitions for intercom-client 2.9
|
|
// Project: https://github.com/intercom/intercom-node
|
|
// Definitions by: Jinesh Shah <https://github.com/jineshshah36>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export interface IdentityVerificationOptions {
|
|
secretKey: string;
|
|
identifier: string;
|
|
}
|
|
|
|
export const IdentityVerification: {
|
|
userHash(opts: IdentityVerificationOptions): string;
|
|
};
|