mirror of
https://github.com/coleam00/bolt.new-any-llm
synced 2024-12-27 22:33:03 +00:00
fc4f89f806
Some checks are pending
Update Stable Branch / prepare-release (push) Waiting to run
* added icons and component * updated unocss to add dynamic icons * removed temp logs * updated readme
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;
|
|
}
|