@transcend-io/typescript-webhook-example
Version:
Example of a webhook that can be integrated with Transcend.
20 lines • 492 B
TypeScript
/**
* Look inside a database and return the person's user profiles
*
* @param userIdentifier - User identifier to lookup
* @returns User data
*/
export declare function lookUpUser(userIdentifier: string): [
{
/** Profile ID */
profileId: string;
/** Profile Data */
profileData: {
/** Name */
name: string;
/** Interests */
interests: string;
};
}
];
//# sourceMappingURL=lookUpUser.d.ts.map