UNPKG

@replyke/core

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

10 lines (9 loc) 286 B
export interface SignTestingJwtProps { projectId: string; privateKey: string; userData: { id: string; } & Record<string, any>; } declare function useSignTestingJwt(): (props: SignTestingJwtProps) => Promise<string | undefined>; export default useSignTestingJwt;