mirror of
https://github.com/stackblitz/bolt.new
synced 2025-06-26 18:17:50 +00:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
export interface Template {
|
|
name: string;
|
|
label: string;
|
|
description: string;
|
|
githubRepo: string;
|
|
tags?: string[];
|
|
icon?: string;
|
|
}
|