// eslint-disable-next-line @typescript-eslint/ban-types export type config = Record>; export interface template { name: string; iconPath: string; iconOpacity: number; color: string; config?: config; } export default class templateService { static async get( templateApiUrl: string, domain: string ): Promise