UNPKG

atomico

Version:

Atomico is a small library for the creation of interfaces based on web-components, only using functions and hooks.

11 lines (8 loc) 239 B
export class Error { target: HTMLElement; message: string; value: any; constructor(target: HTMLElement, message: string, value: unknown); } export class PropError extends Error {} export class ParseError extends Error {}