What Is A Type System
Types
interface Todo {
id: number;
title: string;
completed: boolean;
}
axios.get('/todos/1').then(response => {
const todo = response.data as Todo;
});Categories of types
Last updated
interface Todo {
id: number;
title: string;
completed: boolean;
}
axios.get('/todos/1').then(response => {
const todo = response.data as Todo;
});Last updated