radio-group.d.ts 334 B

123456789101112
  1. import { LitElement } from 'lit';
  2. export default class SlRadioGroup extends LitElement {
  3. static styles: import("lit").CSSResult;
  4. label: string;
  5. noFieldset: boolean;
  6. render(): import("lit-html").TemplateResult<1>;
  7. }
  8. declare global {
  9. interface HTMLElementTagNameMap {
  10. 'sl-radio-group': SlRadioGroup;
  11. }
  12. }