mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-02-03 19:45:00 +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;
|
||
|
}
|