Renaming and fixing lint.

This commit is contained in:
mike12345567 2024-12-04 18:36:06 +00:00
parent cb49beb317
commit 48f72dad86
2 changed files with 2 additions and 3 deletions

View File

@ -16,7 +16,6 @@ import {
CountCalculationFieldMetadata,
CreateViewResponse,
UpdateViewResponse,
DeleteViewResponse,
} from "@budibase/types"
import { builderSocket, gridSocket } from "../../../websockets"
import { helpers } from "@budibase/shared-core"

View File

@ -2,7 +2,7 @@ export enum TemplateType {
APP = "app",
}
export interface Template {
export interface TemplateMetadata {
background: string
icon: string
category: string
@ -14,7 +14,7 @@ export interface Template {
image: string
}
export type FetchTemplateResponse = Template[]
export type FetchTemplateResponse = TemplateMetadata[]
export interface DownloadTemplateResponse {
message: string