bolt.new/app/types/template.ts
Dustin Loring 0066a6f55f feat: starter templates
added starter templates
2025-01-17 08:08:07 -05:00

8 lines
144 B
TypeScript

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