svelte-check
Advanced tools
Comparing version 1.1.19 to 1.1.20
@@ -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 = {}>( |
{ | ||
"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
4577602
2071