-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(animation-prop): decommission old animation-prop.ts and generaliz…
…e the new one (#1660)
- Loading branch information
1 parent
c61339f
commit 493b6bd
Showing
7 changed files
with
23 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import { DefineComponent, PropType } from 'vue'; | ||
|
||
/** | ||
* Type for animations props. | ||
* | ||
* @remarks | ||
* String for 'ul' | ||
* Object for `DefineComponent` type | ||
* Function for `() => NoElement` | ||
* | ||
* @public | ||
*/ | ||
export const AnimationProp = [String, Object, Function] as PropType< | ||
// eslint-disable-next-line @typescript-eslint/ban-types | ||
DefineComponent<{}, {}, any> | string | ||
>; | ||
export const AnimationProp = [String, Object, Function]; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters