-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
214fd20
commit b386c84
Showing
2 changed files
with
5 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
import Vue from 'vue'; | ||
import TuiCalendar from 'tui-calendar'; | ||
import Vue, { PluginFunction } from 'vue'; | ||
|
||
type FunctionKeys<T extends object> = {[K in keyof T]: T[K] extends Function ? K : never}[keyof T]; | ||
|
||
type CalendarFnKeys = FunctionKeys<TuiCalendar>; | ||
|
||
export class Calendar extends Vue { | ||
export default class VueCalendar extends Vue { | ||
public invoke<T extends CalendarFnKeys>(fname: T, ...args: Parameters<TuiCalendar[T]>): ReturnType<TuiCalendar[T]>; | ||
public getRootElement(): HTMLElement; | ||
|
||
static install(): PluginFunction<any>; | ||
} |
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