Skip to content

Instantly share code, notes, and snippets.

@BrahimOubbad
BrahimOubbad / api.ts
Created February 22, 2024 18:43 — forked from JaysonChiang/api.ts
Example of Axios with TypeScript
import axios, { AxiosError, AxiosResponse } from 'axios';
import token from './somewhere';
interface Todo {
id: string;
title: string;
}
interface User {
id: string;