Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

19 righe
340 B

  1. import {Uuid} from '@theoryofnekomata/uuid-buffer';
  2. export type LogParameter = {
  3. id: number,
  4. logId: number,
  5. key: string,
  6. value: string,
  7. }
  8. export type Log = {
  9. id: number,
  10. subjectUserId: Uuid,
  11. subjectUsername: string,
  12. action: string,
  13. createdAt: Date,
  14. }
  15. export type LogParameterData = Pick<LogParameter, 'key' | 'value'>;