(log: SignedAuditLog)
| 142 | |
| 143 | /** Serialize to pretty JSON. PURE. */ |
| 144 | export function serializeAuditLog(log: SignedAuditLog): string { |
| 145 | return JSON.stringify(log, null, 2); |
| 146 | } |
| 147 | |
| 148 | export interface AuditVerifyResult { |
| 149 | ok: boolean; |
no outgoing calls
no test coverage detected