UNPKG

@gang-js/core

Version:

a state sharing algorithm

10 lines (9 loc) 251 B
export class GangAuthenticationCredential { constructor(id, transports) { this.id = id; this.transports = transports; } static from(data) { return new GangAuthenticationCredential(data.id, data.transports); } }