types.d.ts 261 B

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