incr: insert or update .template.html files

- move .template.html files out of fixtures
This commit is contained in:
18alantom
2023-03-07 14:16:19 +05:30
parent dabcbcd2ce
commit eda3bb7576
13 changed files with 161 additions and 7 deletions
+1
View File
@@ -22,6 +22,7 @@ export enum IPC_ACTIONS {
SELECT_FILE = 'select-file',
GET_CREDS = 'get-creds',
GET_DB_LIST = 'get-db-list',
GET_TEMPLATES = 'get-templates',
DELETE_FILE = 'delete-file',
// Database messages
DB_CREATE = 'db-create',
+8 -2
View File
@@ -23,14 +23,18 @@ export interface VersionParts {
beta?: number;
}
export type Creds = { errorLogUrl: string; telemetryUrl: string; tokenString: string };
export type Creds = {
errorLogUrl: string;
telemetryUrl: string;
tokenString: string;
};
export type UnexpectedLogObject = {
name: string;
message: string;
stack: string;
more: Record<string, unknown>;
}
};
export interface SelectFileOptions {
title: string;
@@ -48,3 +52,5 @@ export interface SelectFileReturn {
export type PropertyEnum<T extends Record<string, any>> = {
[key in keyof Required<T>]: key;
};
export type TemplateFile = { file: string; template: string; modified: string };