mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { ClientLogLevel } from './client-log-level.type'
|
|
|
|
export interface ClientLogCreate {
|
|
message: string
|
|
url: string
|
|
level: ClientLogLevel
|
|
|
|
stackTrace?: string
|
|
userAgent?: string
|
|
meta?: string
|
|
}
|