11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
|
import type { ZRenderType } from '../zrender';
|
||
|
interface Opts {
|
||
|
style?: {
|
||
|
backgroundColor?: string;
|
||
|
color?: string;
|
||
|
};
|
||
|
autoHideDelay?: number;
|
||
|
}
|
||
|
export default function showDebugDirtyRect(zr: ZRenderType, opts?: Opts): void;
|
||
|
export {};
|