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