Skip to content

Instantly share code, notes, and snippets.

@JaysonChiang
JaysonChiang / api.ts
Last active May 14, 2025 13:26
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;