forked from extern/egroupware
1586bbd66a
(cherry picked from commit d57df627a7
)
26 lines
452 B
TypeScript
26 lines
452 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
import {LitElement, html, css} from 'lit';
|
|
import {customElement, property} from 'lit/decorators.js';
|
|
|
|
/**
|
|
* An example element.
|
|
*
|
|
* @slot - This element has a slot
|
|
* @csspart button - The button
|
|
*/
|
|
@customElement('my-input')
|
|
export class MyInput extends LitElement {
|
|
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'my-input': MyInput;
|
|
}
|
|
}
|