add assets

This commit is contained in:
RustamRu 2024-11-10 02:46:08 +03:00
parent 4cb3fba14a
commit 374d2d2ebe
7 changed files with 34 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1 @@
export { default as LogoSvg } from './dry-master-logo.svg';

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View File

@ -0,0 +1 @@
export { default as DemoVideoPosterImg } from './demo-video-poster.webp';

BIN
src/assets/videos/demo.mp4 Normal file

Binary file not shown.

View File

@ -0,0 +1 @@
export { default as DemoVideo } from './demo.mp4';

17
types.d.ts vendored
View File

@ -3,3 +3,20 @@ declare interface NodeModule {
accept: (path: string, callback: () => void) => void; accept: (path: string, callback: () => void) => void;
}; };
} }
declare module "*.svg" {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const value: any;
export = value;
}
declare module "*.webp" {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const value: any;
export = value;
}
declare module '*.mp4' {
const src: string;
export default src;
}