UNPKG

1.56 kBJavaScriptView Raw
1"use strict";
2/**
3 * Copyright 2019 Google Inc. All Rights Reserved.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17Object.defineProperty(exports, "__esModule", { value: true });
18exports.HtmlResponse = void 0;
19class HtmlResponse {
20 /**
21 * @param options Canvas options
22 * @public
23 */
24 constructor(options = {}) {
25 const abstracted = options;
26 const raw = options;
27 this.url = options.url;
28 this.suppressMic =
29 typeof raw.suppressMic !== 'undefined'
30 ? raw.suppressMic
31 : abstracted.suppress;
32 this.updatedState = raw.updatedState || abstracted.data;
33 }
34 /** @public */
35 get suppress() {
36 return !!this.suppressMic;
37 }
38 /** @public */
39 set suppress(suppress) {
40 this.suppressMic = suppress;
41 }
42 /** @public */
43 get data() {
44 return this.updatedState;
45 }
46 /** @public */
47 set data(data) {
48 this.updatedState = data;
49 }
50}
51exports.HtmlResponse = HtmlResponse;
52//# sourceMappingURL=html.js.map
\No newline at end of file