14 lines
234 B
TypeScript
14 lines
234 B
TypeScript
export const VOICE_MODULE = 'voice' as const
|
|
|
|
export interface VoiceModule {
|
|
id: typeof VOICE_MODULE
|
|
name: '语音'
|
|
icon: 'mic'
|
|
}
|
|
|
|
export const voiceModule: VoiceModule = {
|
|
id: VOICE_MODULE,
|
|
name: '语音',
|
|
icon: 'mic',
|
|
}
|