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

svelte2tsx

Package Overview
Dependencies
Maintainers
1
Versions
296
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.66 to 0.1.67

11

index.d.ts

@@ -1,6 +0,11 @@

type SvelteCompiledToTsx = {
code: string,
map: import("magic-string").SourceMap
export interface SvelteCompiledToTsx {
code: string;
map: import("magic-string").SourceMap;
exportedNames: IExportedNames;
}
export interface IExportedNames {
has(name: string): boolean;
}
export default function svelte2tsx(

@@ -7,0 +12,0 @@ svelte: string,

{
"name": "svelte2tsx",
"version": "0.1.66",
"version": "0.1.67",
"description": "Convert Svelte components to TSX for type checking",

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

@@ -81,1 +81,12 @@ declare module '*.svelte' {

>(on: SvelteOnAllEvent<T>, event: TEvent): T[TKey];
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
): any;

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