Bilibili-Evolved/registry/lib/components/utils/comments/content-replace/options.ts
2024-10-19 20:10:43 +08:00

11 lines
337 B
TypeScript

import { defineOptionsMetadata, OptionsOfMetadata } from '@/components/define'
export const commentContentReplaceOptions = defineOptionsMetadata({
replaceMap: {
defaultValue: {} as Record<string, string>,
hidden: true,
},
})
export type CommentContentReplaceOptions = OptionsOfMetadata<typeof commentContentReplaceOptions>