@68publishers/amp-client
Version:
JS Client for 68publishers/amp
32 lines (26 loc) • 506 B
JavaScript
export class State {
static get NEW() {
return 'NEW';
}
static get RENDERED() {
return 'RENDERED';
}
static get NOT_FOUND() {
return 'NOT_FOUND';
}
static get ERROR() {
return 'ERROR';
}
static get CLOSED() {
return 'CLOSED';
}
static get STATES() {
return [
State.NEW,
State.RENDERED,
State.NOT_FOUND,
State.ERROR,
State.CLOSED,
];
}
}