Web API for code.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

models.ts 125 B

1234567
  1. export type Log = {
  2. id: number,
  3. subjectUserId: Buffer,
  4. subjectUsername: string,
  5. action: string,
  6. createdAt: Date,
  7. }