UNPKG

fingerprint-oss

Version:

A comprehensive JavaScript library for device fingerprinting and system information collection. Provides robust, deterministic fingerprinting for web applications with privacy-conscious design.

26 lines (25 loc) 1.01 kB
/*! * Copyright (c) 2025 Akshat Kotpalliwar (alias IntegerAlex on GitHub) * This software is licensed under the GNU Lesser General Public License (LGPL) v3 or later. * * You are free to use, modify, and redistribute this software, but modifications must also be licensed under the LGPL. * This project is distributed without any warranty; see the LGPL for more details. * * For a full copy of the LGPL and ethical contribution guidelines, please refer to the `COPYRIGHT.md` and `NOTICE.md` files. */ /** * Toast notification system with glassmorphism styling and smooth animation. */ export declare class Toast { private static stylesInjected; /** * Displays a toast notification. * @param message The message to display. * @param duration Duration in milliseconds before auto-dismissal (default: 3000). */ static show(message: string, duration?: number): void; /** * Injects glassmorphic CSS styles for toasts. */ private static injectStyles; }