Chocobozzz/PeerTube

View on GitHub
packages/models/src/moderation/watched-words-list.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface WatchedWordsList {
  id: number

  listName: string
  words: string[]

  updatedAt: Date | string
  createdAt: Date | string
}