refactor(core): Removed readonly getters and changed to readonly (#19225)
variables
This commit is contained in:

committed by
Victor Berchet

parent
3aa3d5c548
commit
2b84b86fc0
@ -114,13 +114,14 @@ export class AnimationRendererFactory implements RendererFactory2 {
|
||||
}
|
||||
|
||||
export class BaseAnimationRenderer implements Renderer2 {
|
||||
readonly data: {[key: string]: any};
|
||||
|
||||
constructor(
|
||||
protected namespaceId: string, public delegate: Renderer2, public engine: AnimationEngine) {
|
||||
this.destroyNode = this.delegate.destroyNode ? (n) => delegate.destroyNode !(n) : null;
|
||||
this.data = delegate.data;
|
||||
}
|
||||
|
||||
get data() { return this.delegate.data; }
|
||||
|
||||
destroyNode: ((n: any) => void)|null;
|
||||
|
||||
destroy(): void {
|
||||
|
Reference in New Issue
Block a user