()
| 87 | } |
| 88 | |
| 89 | function agent(): Agent.Info { |
| 90 | return { |
| 91 | name: "build", |
| 92 | mode: "primary", |
| 93 | options: {}, |
| 94 | permission: [{ permission: "*", pattern: "*", action: "allow" }], |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | function defer<T>() { |
| 99 | let resolve!: (value: T | PromiseLike<T>) => void |
no outgoing calls
no test coverage detected