import { Injectable } from '@angular/core' import { ChartData, LibrarySearch } from 'src-shared/interfaces/search.interface' @Injectable({ providedIn: 'root', }) export class StorageService { async addChart(chartData: ChartData): Promise { return window.electron.invoke.addChart(chartData) } async removeChart(md5: string): Promise { return window.electron.invoke.removeChart(md5) } async removeCharts(charts: ChartData[]): Promise { return window.electron.invoke.removeCharts(charts) } async getChartsBySearchTerm(searchTerm?: string, page?: number, pageSize?: number): Promise { const librarySearch = { searchTerm: searchTerm, page: page, pageSize: pageSize, } as LibrarySearch return window.electron.invoke.getChartsBySearchTerm(librarySearch) } async removeAllCharts(): Promise { return window.electron.emit.removeAllCharts() } }