(command: string)
| 53 | } |
| 54 | |
| 55 | export function getSessionCommandKind(command: string): SessionCommandKind | undefined { |
| 56 | return getDaemonCommandDescriptor(command)?.sessionKind; |
| 57 | } |
| 58 | |
| 59 | export function isLeaseAdmissionExempt(command: string): boolean { |
| 60 | return getDaemonCommandDescriptor(command)?.leaseAdmissionExempt === true; |
no test coverage detected