bolt.diy/app/types/template.ts

9 lines
144 B
TypeScript
Raw Normal View History

export interface Template {
name: string;
label: string;
description: string;
githubRepo: string;
tags?: string[];
icon?: string;
}