mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 21:59:40 +02:00
12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
|
// TODO Remove this file when upgrading to Vuetify 3.0
|
||
|
|
||
|
export type VTooltip = Vue & {
|
||
|
deactivate(): void;
|
||
|
}
|
||
|
|
||
|
export type VForm = Vue & {
|
||
|
validate: () => boolean;
|
||
|
resetValidation: () => boolean;
|
||
|
reset: () => void;
|
||
|
};
|