Files

11 lines
264 B
TypeScript
Raw Permalink Normal View History

2025-08-18 10:01:04 +08:00
import type { ZRenderType } from '../zrender';
interface Opts {
style?: {
backgroundColor?: string;
color?: string;
};
autoHideDelay?: number;
}
export default function showDebugDirtyRect(zr: ZRenderType, opts?: Opts): void;
export {};