ttrpg-tools/src/global.d.ts

17 lines
296 B
TypeScript
Raw Normal View History

2026-03-13 15:36:35 +08:00
/// <reference types="vite/client" />
interface WebpackContext {
(path: string): { default?: string } | string;
keys(): string[];
}
interface ImportMeta {
webpackContext(
directory: string,
options: {
recursive?: boolean;
regExp?: RegExp;
}
): WebpackContext;
}