direct-vuex
Advanced tools
Comparing version 0.7.4 to 0.7.5
{ | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": true, | ||
"source.organizeImports": true | ||
"[typescript]": { | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": true, | ||
"source.organizeImports": true | ||
}, | ||
"editor.defaultFormatter": "vscode.typescript-language-features", | ||
"editor.formatOnSave": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.insertSpaces": true, | ||
"editor.rulers": [ | ||
120 | ||
], | ||
"editor.rulers": [120], | ||
"editor.tabSize": 2, | ||
"editor.wordWrap": "wordWrapColumn", | ||
"editor.wordWrapColumn": 132, | ||
"editor.wordWrap": "wordWrapColumn", | ||
"files.encoding": "utf8", | ||
"files.trimTrailingWhitespace": true, | ||
"javascript.format.semicolons": "remove", | ||
"search.useIgnoreFiles": true, | ||
"tslint.configFile": "tslint.json", | ||
"typescript.locale": "en", | ||
"typescript.preferences.importModuleSpecifier": "relative", | ||
"typescript.preferences.quoteStyle": "double" | ||
} | ||
} |
{ | ||
"name": "direct-vuex", | ||
"version": "0.7.4", | ||
"version": "0.7.5", | ||
"description": "Use and implement your Vuex store with TypeScript types. Compatible with the Vue 3 composition API.", | ||
@@ -5,0 +5,0 @@ "author": "Paleo", |
@@ -125,3 +125,3 @@ import { ActionContext, Store } from "vuex" | ||
type ShowContent<T> = | ||
T extends ((...args: any[]) => any) ? T : | ||
T extends Function ? T : | ||
T extends object ? | ||
@@ -132,5 +132,5 @@ T extends infer O ? { [K in keyof O]: ShowContentDepth1<O[K]> } : never | ||
type ShowContentDepth1<T> = | ||
T extends ((...args: any[]) => any) ? T : | ||
T extends Function ? T : | ||
T extends object ? | ||
T extends infer O ? { [K in keyof O]: O[K] } : never | ||
: T |
36746
755