baublet/w8mngr

View on GitHub
api/dataServices/upload/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { UploadEntityType } from "../../generated";

export type Upload = {
  id: string;
  userId: string;
  createdAt: Date;
  updatedAt: Date;
  name: string;
  publicId: string;
  entityType?: UploadEntityType;
  entityId?: string;
  extension?: string;
};