mirror of
https://github.com/selfxyz/self.git
synced 2026-01-10 15:18:18 -05:00
This commit is a first pass of lint and fmt, with a few manual fixes. Only manual issues left to do.
10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
declare module '@env';
|
|
declare module '*.png' {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
declare module '*.jpeg' {
|
|
const value: string;
|
|
export = value;
|
|
}
|