forked from trent_larson/crowd-funder-for-time-pwa
Fix: stepType was being set to an object
This commit is contained in:
12
src/types/global.d.ts
vendored
12
src/types/global.d.ts
vendored
@@ -66,4 +66,16 @@ declare global {
|
||||
interface Window {
|
||||
electronAPI: ElectronAPI;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Vue instance interface extension for global properties.
|
||||
*
|
||||
* This makes global properties available on Vue instances
|
||||
* in TypeScript without type errors.
|
||||
*/
|
||||
declare module 'vue' {
|
||||
interface ComponentCustomProperties {
|
||||
$notify: (notification: any, timeout?: number) => void;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user