rehype.ts 200 B

123456
  1. export const RehypeSanitizeOption = {
  2. RECOMMENDED: 'Recommended',
  3. CUSTOM: 'Custom',
  4. } as const;
  5. export type RehypeSanitizeOption = typeof RehypeSanitizeOption[keyof typeof RehypeSanitizeOption];