Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 řádky
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'>;