10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import type { EndpointConfig } from "./client";
|
|
|
|
export const referralEndpoints = {
|
|
apply: {
|
|
base: "referral",
|
|
path: "/api/referrals/apply",
|
|
method: "POST" as const,
|
|
} satisfies EndpointConfig,
|
|
};
|