Files
self/app/declarations.d.ts
thomas-senechal 126711d326 First lint and fmt pass
This commit is a first pass of lint and fmt, with a few manual fixes. Only manual issues left to do.
2025-01-06 18:54:46 +01:00

10 lines
160 B
TypeScript

declare module '@env';
declare module '*.png' {
const value: string;
export = value;
}
declare module '*.jpeg' {
const value: string;
export = value;
}