diff --git a/packages/types/src/api/web/template.ts b/packages/types/src/api/web/template.ts index bd5fdf1cb0..34b846b7ef 100644 --- a/packages/types/src/api/web/template.ts +++ b/packages/types/src/api/web/template.ts @@ -1,4 +1,20 @@ -export interface FetchTemplateResponse {} +export enum TemplateType { + APP = "app", +} + +export interface Template { + background: string + icon: string + category: string + description: string + name: string + url: string + type: TemplateType + key: string + image: string +} + +export type FetchTemplateResponse = Template[] export interface DownloadTemplateResponse { message: string