Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

svelte2tsx

Package Overview
Dependencies
Maintainers
1
Versions
299
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte2tsx - npm Package Compare versions

Comparing version 0.1.77 to 0.1.78

2

package.json
{
"name": "svelte2tsx",
"version": "0.1.77",
"version": "0.1.78",
"description": "Convert Svelte components to TSX for type checking",

@@ -5,0 +5,0 @@ "author": "David Pershouse",

@@ -700,5 +700,9 @@ /**

interface SapperAnchorProps {
sapperNoscroll?: true;
}
interface IntrinsicElements {
// HTML
a: HTMLProps<HTMLAnchorElement>;
a: HTMLProps<HTMLAnchorElement> & SapperAnchorProps;
abbr: HTMLProps<HTMLElement>;

@@ -705,0 +709,0 @@ address: HTMLProps<HTMLElement>;

@@ -158,10 +158,5 @@ declare module '*.svelte' {

declare function __sveltets_awaitThen<T>(
promise: PromiseLike<T>,
onfulfilled: (value: T) => any,
onrejected?: (value: any) => any
): any;
declare function __sveltets_awaitThen<T>(
promise: T,
onfulfilled: (value: T) => any,
onrejected?: (value: never) => any
onfulfilled: (value: T extends PromiseLike<infer U> ? U : T) => any,
onrejected?: (value: T extends PromiseLike<any> ? any : never) => any
): any;

@@ -168,0 +163,0 @@

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

Sorry, the diff of this file is not supported yet

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