0
0
Fork 0

Add TypeScript support for mastodon alias and image imports (#24895)

This commit is contained in:
たいち ひ 2023-05-08 18:28:36 +09:00 committed by GitHub
parent 76264e3fe8
commit 7c1305b3a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 45 additions and 4 deletions

34
app/javascript/types/image.d.ts vendored Normal file
View file

@ -0,0 +1,34 @@
declare module '*.avif' {
const path: string;
export default path;
}
declare module '*.gif' {
const path: string;
export default path;
}
declare module '*.jpg' {
const path: string;
export default path;
}
declare module '*.jpg' {
const path: string;
export default path;
}
declare module '*.png' {
const path: string;
export default path;
}
declare module '*.svg' {
const path: string;
export default path;
}
declare module '*.webp' {
const path: string;
export default path;
}