mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
24 lines
763 B
TypeScript
24 lines
763 B
TypeScript
export declare type TypeOptions = 'info' | 'success' | 'warning' | 'error' | 'default';
|
|
export declare type Positons = 'top-left' | 'top-right' | 'top-center' | 'bottom-left' | 'bottom-right' | 'bottom-center';
|
|
export declare const POSITION: {
|
|
readonly TOP_LEFT: "top-left";
|
|
readonly TOP_RIGHT: "top-right";
|
|
readonly TOP_CENTER: "top-center";
|
|
readonly BOTTOM_LEFT: "bottom-left";
|
|
readonly BOTTOM_RIGHT: "bottom-right";
|
|
readonly BOTTOM_CENTER: "bottom-center";
|
|
};
|
|
export declare const TYPE: {
|
|
INFO: string;
|
|
SUCCESS: string;
|
|
WARNING: string;
|
|
ERROR: string;
|
|
DEFAULT: string;
|
|
DARK: string;
|
|
};
|
|
export declare const enum DEFAULT {
|
|
COLLAPSE_DURATION = 300,
|
|
DEBOUNCE_DURATION = 50,
|
|
CSS_NAMESPACE = "Toastify"
|
|
}
|