mirror of
https://github.com/JosunLP/BrowserExtensionTemplate.git
synced 2025-12-15 01:40:06 +00:00
12 lines
No EOL
129 B
TypeScript
12 lines
No EOL
129 B
TypeScript
class Background {
|
|
|
|
constructor() {
|
|
this.main();
|
|
}
|
|
|
|
async main(): Promise<void> {
|
|
|
|
}
|
|
}
|
|
|
|
new Background(); |