add assets
This commit is contained in:
parent
4cb3fba14a
commit
374d2d2ebe
14
src/assets/icons/dry-master-logo.svg
Normal file
14
src/assets/icons/dry-master-logo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 11 KiB |
1
src/assets/icons/index.ts
Normal file
1
src/assets/icons/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export { default as LogoSvg } from './dry-master-logo.svg';
|
BIN
src/assets/images/demo-video-poster.webp
Normal file
BIN
src/assets/images/demo-video-poster.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
1
src/assets/images/index.ts
Normal file
1
src/assets/images/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export { default as DemoVideoPosterImg } from './demo-video-poster.webp';
|
BIN
src/assets/videos/demo.mp4
Normal file
BIN
src/assets/videos/demo.mp4
Normal file
Binary file not shown.
1
src/assets/videos/index.ts
Normal file
1
src/assets/videos/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export { default as DemoVideo } from './demo.mp4';
|
17
types.d.ts
vendored
17
types.d.ts
vendored
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user