You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
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'>;