1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29

ash / webui / scanning / resources / scan_settings_section.ts [blame]

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import './scanning_fonts.css.js';
import './scanning_shared.css.js';

import {PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js';

import {getTemplate} from './scan_settings_section.html.js';

class ScanSettingsSectionElement extends PolymerElement {
  static get is() {
    return 'scan-settings-section' as const;
  }

  static get template() {
    return getTemplate();
  }
}

declare global {
  interface HTMLElementTagNameMap {
    [ScanSettingsSectionElement.is]: ScanSettingsSectionElement;
  }
}

customElements.define(
    ScanSettingsSectionElement.is, ScanSettingsSectionElement);