2021-10-23 11:11:03 +01:00
|
|
|
import {SecondWatcher} from "./second";
|
2021-10-19 22:25:47 +01:00
|
|
|
|
2021-10-20 20:35:15 +01:00
|
|
|
namespace Selector.Web {
|
|
|
|
class Watcher {
|
2021-10-19 22:25:47 +01:00
|
|
|
static example: string = "string";
|
2021-10-20 20:35:15 +01:00
|
|
|
static ex2: string = "awdwad";
|
|
|
|
}
|
2021-10-23 11:11:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
let sec = new SecondWatcher();
|
|
|
|
|
|
|
|
console.log("hello world!");
|
|
|
|
console.log(sec);
|