Skip to content

Instantly share code, notes, and snippets.

View qooktree1's full-sized avatar

박종민 qooktree1

  • UIMD
View GitHub Profile
@JaysonChiang
JaysonChiang / api.ts
Last active November 21, 2025 03:07
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;