UNPKG
@heroku/applink
Version:
latest (1.0.0)
1.0.0
1.0.0-ea.2
1.0.0-ea.1
1.0.0-ea.0
1.0.0-ea
Applink SDK for Heroku Apps.
@heroku/applink
/
dist
/
sdk
/
user.js
11 lines
(10 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
UserImpl
=
void
0
;
class
UserImpl
{
constructor
(
id, username
) {
this
.
id
= id;
this
.
username
= username; } }
exports
.
UserImpl
=
UserImpl
;