Matrix/Webserver/src/lib/interfaces.ts
2024-02-22 10:37:00 +01:00

6 lines
143 B
TypeScript

// Interface to represent a response from the matrix API server
export interface APIResponse {
success: boolean;
results?: Array<unknown>;
}