2025SELab2-project-Dwengo/backend/src/interfaces/list.ts

5 lines
135 B
TypeScript

// TODO: implement something like this but with named endpoints
export interface List<T> {
items: T[];
endpoints?: string[];
}