Skip to content

Instantly share code, notes, and snippets.

@JaysonChiang
JaysonChiang / api.ts
Last active March 10, 2025 21:50
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;