@wcstack/timer 1.32.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -208,5 +208,11 @@ declare class Timer extends HTMLElement {
|
|
|
208
208
|
disconnectedCallback(): void;
|
|
209
209
|
}
|
|
210
210
|
|
|
211
|
+
declare global {
|
|
212
|
+
interface HTMLElementTagNameMap {
|
|
213
|
+
"wcs-timer": Timer;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
211
217
|
export { TimerCore, Timer as WcsTimer, bootstrapTimer, getConfig };
|
|
212
218
|
export type { IWritableConfig, IWritableTagNames, TimerStartOptions, WcsTimerCommands, WcsTimerCoreCommands, WcsTimerCoreValues, WcsTimerInputs, WcsTimerTickDetail, WcsTimerValues };
|
package/package.json
CHANGED