MWSE/frontend/Peer.ts

17 lines
287 B
TypeScript

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;
}
}