Renaming and fixing lint.
This commit is contained in:
parent
cb49beb317
commit
48f72dad86
|
@ -16,7 +16,6 @@ import {
|
||||||
CountCalculationFieldMetadata,
|
CountCalculationFieldMetadata,
|
||||||
CreateViewResponse,
|
CreateViewResponse,
|
||||||
UpdateViewResponse,
|
UpdateViewResponse,
|
||||||
DeleteViewResponse,
|
|
||||||
} from "@budibase/types"
|
} from "@budibase/types"
|
||||||
import { builderSocket, gridSocket } from "../../../websockets"
|
import { builderSocket, gridSocket } from "../../../websockets"
|
||||||
import { helpers } from "@budibase/shared-core"
|
import { helpers } from "@budibase/shared-core"
|
||||||
|
|
|
@ -2,7 +2,7 @@ export enum TemplateType {
|
||||||
APP = "app",
|
APP = "app",
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Template {
|
export interface TemplateMetadata {
|
||||||
background: string
|
background: string
|
||||||
icon: string
|
icon: string
|
||||||
category: string
|
category: string
|
||||||
|
@ -14,7 +14,7 @@ export interface Template {
|
||||||
image: string
|
image: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export type FetchTemplateResponse = Template[]
|
export type FetchTemplateResponse = TemplateMetadata[]
|
||||||
|
|
||||||
export interface DownloadTemplateResponse {
|
export interface DownloadTemplateResponse {
|
||||||
message: string
|
message: string
|
||||||
|
|
Loading…
Reference in New Issue