Material Web Team 41d41cc278 chore: update repository for Material 3
PiperOrigin-RevId: 455635969
2022-06-17 16:42:04 +00:00

28 lines
590 B
TypeScript

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {customElement} from 'lit/decorators';
import {TestTable} from './lib/test-table';
import {styles as testTableStyles} from './lib/test-table-styles.css';
export {TestTableTemplate} from './lib/test-table';
declare global {
interface HTMLElementTagNameMap {
'md-test-table': MdTestTable;
}
}
/**
* @soyCompatible
* @final
*/
@customElement('md-test-table')
export class MdTestTable<S extends string = string> extends TestTable<S> {
static override styles = [testTableStyles];
}