Files
codingroom/types.ts
2026-01-28 00:19:52 +08:00

12 lines
193 B
TypeScript

import React from 'react';
export interface Message {
role: 'user' | 'model';
text: string;
}
export interface Service {
title: string;
description: string;
icon: React.ReactNode;
}