import type { Priority } from './Priority'; /** * A fixed priority with a single value */ export type FixedPriority = (Priority & { value?: number; });