import type { AppIdentifierType } from "./AppIdentifierType.js"; import type { MatchingStrategy } from "./MatchingStrategy.js"; export type AppIdentifier = { /** * Depending of the kind this can be case sensitive or not. * - `class` and `title` are case sensitive * - `exe` and `path` are case insensitive */ id: string; /** * the way to match the application */ kind: AppIdentifierType; /** * the strategy to use to determine if id matches with the application */ matchingStrategy: MatchingStrategy; negation: boolean; and: Array; or: Array; }; //# sourceMappingURL=AppIdentifier.d.ts.map