(command: string)
| 74 | } |
| 75 | |
| 76 | function buildSessionStartHookTrustedHash(command: string): string { |
| 77 | return versionForTomlLikeValue({ |
| 78 | event_name: 'session_start', |
| 79 | hooks: [ |
| 80 | { |
| 81 | async: false, |
| 82 | command, |
| 83 | timeout: 600, |
| 84 | type: 'command' |
| 85 | } |
| 86 | ] |
| 87 | }); |
| 88 | } |
| 89 | |
| 90 | function sessionFlagsHookStateKey(): string { |
| 91 | const sourcePath = process.platform === 'win32' |
no test coverage detected