calcite-tile.d.ts 336 B

1234567891011
  1. import type { Components, JSX } from "../types/components";
  2. interface CalciteTile extends Components.CalciteTile, HTMLElement {}
  3. export const CalciteTile: {
  4. prototype: CalciteTile;
  5. new (): CalciteTile;
  6. };
  7. /**
  8. * Used to define this component and all nested components recursively.
  9. */
  10. export const defineCustomElement: () => void;