mark `handles` as private property

This commit is contained in:
Pig Fang 2018-02-05 18:45:15 +08:00
parent fcd7e58688
commit 141c983bc3
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ declare class AnimationHandle implements IAnimation {
}
export class CompositeAnimation implements IAnimation {
readonly handles: Set<AnimationHandle>
private handles: Set<AnimationHandle>
constructor()