import MWSE from "./index";
interface IPeerOptions{
};
export default class Peer
{
public wsts : MWSE;
public options! : IPeerOptions;
constructor(wsts:MWSE){
this.wsts = wsts;
}
setPeerOptions(options:IPeerOptions){
this.options = options;