forked from asivery/webminidisc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.d.ts
More file actions
27 lines (25 loc) · 829 Bytes
/
Copy pathtypes.d.ts
File metadata and controls
27 lines (25 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
declare module '@ffmpeg/ffmpeg';
declare module '@ffmpeg/ffmpeg/src/index';
declare module 'recorderjs';
declare module 'v86'; // v86 types are available in the repo but not published to npm
declare module '*.svg' {
const content: string;
export default content;
}
declare module 'react95';
declare module 'react95/dist/themes/original';
declare module 'react95/dist/fonts/ms_sans_serif.woff2';
declare module 'react95/dist/fonts/ms_sans_serif_bold.woff2';
declare module 'jconv';
interface ArrayBuffer {
/**
* A fake property to make TypeScript distinguish between ArrayBuffer and (U)int*Array
*/
notTypedArray: undefined;
}
interface SharedArrayBuffer {
/**
* A fake property to make TypeScript distinguish between SharedArrayBuffer and (U)int*Array
*/
notTypedArray: undefined;
}