/** * Represents type that can be visualy invalidated */ export interface Invalidatable { /** * Explicitly runs invalidation of content (change detection), which redraws contents */ invalidateVisuals(): void; } //# sourceMappingURL=invalidatable.d.ts.map