Skip to content

Commit

Permalink
🎨 Order typings alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoLegends committed Mar 3, 2018
1 parent 0e5f106 commit 152b572
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions dom-flip.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/**
* All used attribute names.
*/
const enum AttributeNames {
Active = 'active',
AttrName = 'attr-name',
DelayMs = 'delay-ms',
DurationMs = 'duration-ms',
Easing = 'easing',
TransitionClassName = 'transition-class-name',
}

/**
* Child metadata.
*/
Expand All @@ -14,18 +26,6 @@ interface ChildData {
scaleY: number;
}

/**
* All used attribute names.
*/
const enum AttributeNames {
Active = 'active',
AttrName = 'attr-name',
DelayMs = 'delay-ms',
DurationMs = 'duration-ms',
Easing = 'easing',
TransitionClassName = 'transition-class-name',
}

/**
* Generates a CSS `translate`-rule compatible string that does a 2D transform.
*
Expand Down

0 comments on commit 152b572

Please sign in to comment.