14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
|
|
import type { Tool } from './tool';
|
||
|
|
|
||
|
|
export interface VocalSynthProject {
|
||
|
|
title: string;
|
||
|
|
icon: string;
|
||
|
|
description: string;
|
||
|
|
link: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface VocalSynthPage {
|
||
|
|
projects: VocalSynthProject[];
|
||
|
|
tools: Tool[];
|
||
|
|
}
|