mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-01-22 19:06:12 +00:00
9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
|
export interface Template {
|
||
|
name: string;
|
||
|
label: string;
|
||
|
description: string;
|
||
|
githubRepo: string;
|
||
|
tags?: string[];
|
||
|
icon?: string;
|
||
|
}
|