UNPKG

supertokens-node

Version:
12 lines (11 loc) 258 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>;