material-web/menu/menu-item.ts
Alexander Marks 30c95aeee1 chore: add ".js" extensions to import statements.
In particular, this allows external build tools like Rollup and @web/dev-server to understand imports of Lit, which is configured to require the ".js" extension via its export conditions (so that Lit import maps can remain minimal).

PiperOrigin-RevId: 469772992
2022-08-24 11:01:21 -07:00

23 lines
469 B
TypeScript

/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {customElement} from 'lit/decorators.js';
import {styles} from '../list/lib/listitem/list-item-styles.css.js';
import {MenuItem} from './lib/menuitem/menu-item.js';
declare global {
interface HTMLElementTagNameMap {
'md-menu-item': MdMenuItem;
}
}
@customElement('md-menu-item')
export class MdMenuItem extends MenuItem {
static override styles = [styles];
}