UNPKG

supertokens-node

Version:
8 lines (7 loc) 246 B
// @ts-nocheck import { APIFunction } from "../types"; export type Response = { status: "OK"; count: number; }; export default function usersCountGet({ stInstance, tenantId, userContext, }: Parameters<APIFunction>[0]): Promise<Response>;