(cursor: string)
| 16 | } |
| 17 | |
| 18 | function decodeCursor(cursor: string): CursorData | null { |
| 19 | try { |
| 20 | return JSON.parse(Buffer.from(cursor, 'base64').toString()) |
| 21 | } catch { |
| 22 | return null |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | export interface AuditLogFilterParams { |
| 27 | action?: string |
no test coverage detected