mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
// App configuration api
|
|
import { apiBase } from "../index";
|
|
import { IConfig } from "../../../server/common/config";
|
|
|
|
export const configApi = {
|
|
getConfig() {
|
|
return apiBase.get<IConfig>("/config")
|
|
},
|
|
};
|