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

svelte-check

Package Overview
Dependencies
Maintainers
1
Versions
267
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-check - npm Package Compare versions

Comparing version 1.1.19 to 1.1.20

1

dist/src/svelte-jsx.d.ts

@@ -328,2 +328,3 @@ /// <reference lib="dom" />

optimum?: number;
part?: string;
pattern?: string;

@@ -330,0 +331,0 @@ placeholder?: string;

@@ -94,2 +94,3 @@ declare module '*.svelte' {

type SvelteAllProps = { [index: string]: any }
type SveltePropsAnyFallback<Props> = {[K in keyof Props]: Props[K] extends undefined ? any : Props[K]}
type SvelteRestProps = { [index: string]: any }

@@ -118,5 +119,11 @@ type SvelteSlots = { [index: string]: any }

render: () => {props?: Props, events?: Events, slots?: Slots }
): () => {props?: Partial<Props>, events?: Events, slots?: Slots }
): () => {props?: Partial<SveltePropsAnyFallback<Props>>, events?: Events, slots?: Slots }
declare function __sveltets_partial_with_any<Props = {}, Events = {}, Slots = {}>(
render: () => {props?: Props, events?: Events, slots?: Slots }
): () => {props?: Partial<SveltePropsAnyFallback<Props>> & SvelteAllProps, events?: Events, slots?: Slots }
declare function __sveltets_partial_ts<Props = {}, Events = {}, Slots = {}>(
render: () => {props?: Props, events?: Events, slots?: Slots }
): () => {props?: Partial<Props>, events?: Events, slots?: Slots }
declare function __sveltets_partial_ts_with_any<Props = {}, Events = {}, Slots = {}>(
render: () => {props?: Props, events?: Events, slots?: Slots }
): () => {props?: Partial<Props> & SvelteAllProps, events?: Events, slots?: Slots }

@@ -123,0 +130,0 @@ declare function __sveltets_with_any<Props = {}, Events = {}, Slots = {}>(

2

package.json
{
"name": "svelte-check",
"description": "Svelte Code Checker Terminal Interface",
"version": "1.1.19",
"version": "1.1.20",
"main": "./dist/src/index.js",

@@ -6,0 +6,0 @@ "bin": "./bin/svelte-check",

Sorry, the diff of this file is too big to display

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