UNPKG

ranui

Version:

A framework-agnostic Web Components UI library built on native custom elements, with TypeScript types, light/dark theming, SSR and PWA support.

7 lines (6 loc) 167 B
export interface CustomErrorType { new (m?: string): { message: string; }; } export declare function createCustomError(msg?: string): CustomErrorType;