Skip to main content

notImplementedToast

notImplementedToast()

function notImplementedToast(feature, __namedParameters): void;

Defined in: src/utils/notImplementedToast/notImplementedToast.ts:30

Displays a standardized "coming soon" toast for features that are not yet implemented.

Parameters

ParameterType
featurestring
__namedParametersNotImplementedToastOptions

Returns

void

Example

notImplementedToast("Export to PDF");
// Shows: "Coming soon" with description "Export to PDF isn't available yet."

notImplementedToast("Dark mode", {
description: "We're working on dark mode support.",
duration: 6000,
});