- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
14 lines
558 B
TypeScript
14 lines
558 B
TypeScript
/**
|
|
* The revalidate option used internally for pages. A value of `false` means
|
|
* that the page should not be revalidated. A number means that the page
|
|
* should be revalidated after the given number of seconds (this also includes
|
|
* `1` which means to revalidate after 1 second). A value of `0` is not a valid
|
|
* value for this option.
|
|
*/
|
|
export type Revalidate = number | false;
|
|
export type ExpireTime = number;
|
|
export declare function formatRevalidate({ revalidate, expireTime, }: {
|
|
revalidate: Revalidate;
|
|
expireTime?: ExpireTime;
|
|
}): string;
|