Use forms with or without client-side JavaScript--no code duplication required!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
177 B

  1. import {ParsedUrlQuery} from 'querystring';
  2. export interface NextApiRequest {
  3. query: ParsedUrlQuery;
  4. body?: unknown;
  5. }
  6. export interface NextApiResponse {
  7. body?: unknown;
  8. }