mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 03:25:23 -04:00
20 lines
416 B
TypeScript
20 lines
416 B
TypeScript
/// <reference types="webpack/module" />
|
|
|
|
// see nextConfig.webpack in next.config.ts for non-standard "asset/resource" module rules.
|
|
// https://webpack.js.org/guides/typescript/#importing-other-assets
|
|
|
|
declare module "*.mp4" {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module "*.webm" {
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module "*.vtt" {
|
|
const src: string;
|
|
export default src;
|
|
}
|