attachment.ts 214 B

1234567
  1. export const AttachmentType = {
  2. BRAND_LOGO: 'BRAND_LOGO',
  3. WIKI_PAGE: 'WIKI_PAGE',
  4. PROFILE_IMAGE: 'PROFILE_IMAGE',
  5. } as const;
  6. export type AttachmentType = typeof AttachmentType[keyof typeof AttachmentType];