mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-17 00:52:09 +02:00
24 lines
528 B
TypeScript
24 lines
528 B
TypeScript
import { platform } from "@yaakapp-internal/platform";
|
|
import { rpc } from "./rpc";
|
|
|
|
export interface AppInfo {
|
|
isDev: boolean;
|
|
version: string;
|
|
cliVersion: string | null;
|
|
name: string;
|
|
appDataDir: string;
|
|
appLogDir: string;
|
|
vendoredPluginDir: string;
|
|
defaultProjectDir: string;
|
|
identifier: string;
|
|
featureLicense: boolean;
|
|
featureUpdater: boolean;
|
|
}
|
|
|
|
export const appInfo = {
|
|
...(await rpc("cmd_metadata")),
|
|
identifier: await platform.appIdentifier(),
|
|
} as AppInfo;
|
|
|
|
console.log("App info", appInfo);
|