types.d.ts 211 B

1234567891011
  1. import { Request } from "express";
  2. export interface CreateLinkReq extends Request {
  3. body: {
  4. reuse?: boolean;
  5. password?: string;
  6. customurl?: string;
  7. domain?: Domain;
  8. target: string;
  9. };
  10. }