From 141c983bc33a33c6cdc1edaff47e2774d2c31575 Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Mon, 5 Feb 2018 18:45:15 +0800 Subject: [PATCH] mark `handles` as private property --- types/animation.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/animation.d.ts b/types/animation.d.ts index 6fb372c..7d410ab 100644 --- a/types/animation.d.ts +++ b/types/animation.d.ts @@ -25,7 +25,7 @@ declare class AnimationHandle implements IAnimation { } export class CompositeAnimation implements IAnimation { - readonly handles: Set + private handles: Set constructor()