bolt.diy / app /types /template.ts
codacus's picture
feat: add Starter template menu in homepage (#884)
fc4f89f unverified
raw
history blame
144 Bytes
export interface Template {
name: string;
label: string;
description: string;
githubRepo: string;
tags?: string[];
icon?: string;
}