New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

direct-vuex

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

direct-vuex - npm Package Compare versions

Comparing version 0.6.11 to 0.6.12

2

package.json
{
"name": "direct-vuex",
"version": "0.6.11",
"version": "0.6.12",
"description": "Use and implement your Vuex store with TypeScript types. Compatible with the Vue 3 composition API.",

@@ -5,0 +5,0 @@ "author": "Paleo",

@@ -139,2 +139,2 @@ # direct-vuex

- **TSLint** from Microsoft (`ms-vscode.vscode-typescript-tslint-plugin`)
* **TSLint** from Microsoft (`ms-vscode.vscode-typescript-tslint-plugin`)

@@ -14,9 +14,9 @@ import { ActionContext, Store } from "vuex"

export type ToDirectStore<O extends StoreOptions> = {
readonly state: ToFlatType<DirectState<O>>
getters: ToFlatType<DirectGetters<O>>
commit: ToFlatType<DirectMutations<O>>
dispatch: ToFlatType<DirectActions<O>>
export type ToDirectStore<O extends StoreOptions> = ToFlatType<{
readonly state: DirectState<O>
getters: DirectGetters<O>
commit: DirectMutations<O>
dispatch: DirectActions<O>
original: VuexStore<O>
}
}>

@@ -23,0 +23,0 @@ export type VuexStore<O extends StoreOptions> = Store<ToFlatType<DirectState<O>>> & {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc