Skip to content

Instantly share code, notes, and snippets.

View solivoo's full-sized avatar
🏠
Working from home

Sergio Olivo solivoo

🏠
Working from home
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;