- 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
8 lines
425 B
TypeScript
8 lines
425 B
TypeScript
import type { ReactElement } from 'react';
|
|
import type { ImageResponseOptions, FigmaImageResponseProps } from './types';
|
|
export declare class ImageResponse extends Response {
|
|
constructor(element: ReactElement, options?: ImageResponseOptions);
|
|
}
|
|
export declare const experimental_FigmaImageResponse: (props: FigmaImageResponseProps) => Promise<ImageResponse>;
|
|
export declare type EdgeImageResponse = typeof ImageResponse;
|