1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/api/endpoints/config.api.ts
Roman cac4896517 window-manager refactoring
Signed-off-by: Roman <ixrock@gmail.com>
2020-07-09 20:15:15 +03:00

10 lines
246 B
TypeScript

// App configuration api
import type { IConfigRoutePayload } from "../../../main/routes/config-route";
import { apiBase } from "../index";
export const configApi = {
getConfig() {
return apiBase.get<IConfigRoutePayload>("/config")
},
};