mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-04-16 08:00:10 +03:00
9 lines
135 B
TypeScript
9 lines
135 B
TypeScript
import { z } from 'zod';
|
|
|
|
const linkSchema = z.object({
|
|
referer: z.string(),
|
|
ref_link: z.string(),
|
|
});
|
|
|
|
export default linkSchema;
|