validate-attachment.ts 179 B

1234567
  1. import type { IShareLink } from '~/interfaces/share-link';
  2. export const validateAttachment = (fileId: string, shareLink: IShareLink): boolean => {
  3. // count
  4. return false;
  5. };