Files
framit/app/types/vocal-synth.ts
T

14 lines
235 B
TypeScript
Raw Normal View History

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