mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
|
|
import { DashboardModel } from '../../state/DashboardModel';
|
||
|
|
|
||
|
|
export class ChangeTracker {
|
||
|
|
initCalled = false;
|
||
|
|
|
||
|
|
init(dashboard: DashboardModel, originalCopyDelay: number) {
|
||
|
|
this.initCalled = true;
|
||
|
|
}
|
||
|
|
}
|