13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import type { FileData } from "./ta"
|
|
|
|
export interface IconsLookup {
|
|
[key: string]: ImageMetadata
|
|
}
|
|
|
|
interface GlobGeneric<T> {
|
|
default: T
|
|
}
|
|
|
|
export type GlobAny = GlobGeneric<any>
|
|
export type GlobFiledata = GlobGeneric<FileData>
|
|
export type GlobImage = GlobGeneric<ImageMetadata>
|