12 lines
193 B
TypeScript
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;
|
|
} |