MWSE/frontend/index.ts

10 lines
233 B
TypeScript

import {Connection} from "./Connection";
export default class WSTS {
public connection? : Connection;
public a = 25;
constructor(){
this.connection = new Connection({
endpoint: "25"
});
}
}