UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

12 lines (11 loc) 284 B
/** * @implements globalThis.HTMLTimeElement */ export class HTMLTimeElement extends HTMLElement implements globalThis.HTMLTimeElement { set dateTime(value: string); /** * @type {string} */ get dateTime(): string; } import { HTMLElement } from './element.js';