Răsfoiți Sursa

number -> string

Shun Miyazawa 3 ani în urmă
părinte
comite
ac67a0d133
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      packages/app/src/interfaces/rehype.ts

+ 2 - 2
packages/app/src/interfaces/rehype.ts

@@ -1,6 +1,6 @@
 export const RehypeSanitizeOption = {
-  RECOMMENDED: 1,
-  CUSTOM: 2,
+  RECOMMENDED: 'Recommended',
+  CUSTOM: 'Custom',
 } as const;
 
 export type RehypeSanitizeOption = typeof RehypeSanitizeOption[keyof typeof RehypeSanitizeOption];