fix: remove type in MimeMap interface

This commit is contained in:
puri-ph4tt 2023-12-07 16:27:58 +07:00
parent 8a9625c8c3
commit 4d43416a39

View file

@ -5,7 +5,7 @@ import mime from 'mime'
import type { EhrFile } from '@/stores/tree-data'
export interface MimeMap {
[key: string]: { icon: string; color: string; type: string }
[key: string]: { icon: string; color: string }
}
export interface TypeSetting {
[key: string]: { icon: string; color: string }