import type { AppExtraFlag } from "./AppExtraFlag.js"; import type { AppIdentifier } from "./AppIdentifier.js"; export type AppConfig = { /** * name of the app */ name: string; /** * category to group the app under */ category: string | null; /** * monitor index that the app should be bound to */ boundMonitor: number | null; /** * workspace index that the app should be bound to */ boundWorkspace: number | null; /** * app identifier */ identifier: AppIdentifier; /** * extra specific options/settings for the app */ options: Array; /** * is this config bundled with seelen ui. */ isBundled: boolean; }; //# sourceMappingURL=AppConfig.d.ts.map