bolt.new/app/types/template.ts
Dustin Loring 8707d01128 chore: lint fix
completed lint fixes
2025-01-17 15:14:15 -05:00

9 lines
144 B
TypeScript

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