Skip to content

Commit d188552

Browse files
committed
chore: Release v0.3
1 parent 19bd075 commit d188552

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/common/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export enum ExceptionLevel {
33
ERROR = 2,
44
}
55

6-
export interface TetikusOptions {
6+
export interface ConstructorOptions {
77
directiveName?: string;
88
transitionSpeed?: number;
99
easing?: string;

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import {
55
defaultEasingFunction,
66
defaultDelay,
77
} from './components/Tetikus/options';
8-
import { TetikusOptions } from './common/types';
8+
import { ConstructorOptions } from './common/types';
99
import { App } from 'vue';
1010

1111
export default {
1212
install(
1313
app: App,
14-
{ directiveName, transitionSpeed, easing, delay }: TetikusOptions = {},
14+
{ directiveName, transitionSpeed, easing, delay }: ConstructorOptions = {},
1515
) {
1616
app.component('Tetikus', Tetikus);
1717
app.directive(directiveName || 'thover', TetikusHover);

0 commit comments

Comments
 (0)