aethex-forge/shared/api.ts
2025-08-05 20:03:34 +00:00

12 lines
278 B
TypeScript

/**
* Shared code between client and server
* Useful to share types between client and server
* and/or small pure JS functions that can be used on both client and server
*/
/**
* Example response type for /api/demo
*/
export interface DemoResponse {
message: string;
}