@tamagui/babel-plugin-fully-specified
Advanced tools
Comparing version 1.100.6 to 1.101.0
{ | ||
"name": "@tamagui/babel-plugin-fully-specified", | ||
"version": "1.100.6", | ||
"version": "1.101.0", | ||
"source": "src/index.ts", | ||
@@ -5,0 +5,0 @@ "types": "./types/index.d.ts", |
@@ -1,2 +0,2 @@ | ||
import type { ConfigAPI, NodePath } from '@babel/core'; | ||
import type { ConfigAPI, NodePath, PluginPass } from '@babel/core'; | ||
import type { ImportSpecifier, ImportDeclaration, ExportAllDeclaration, StringLiteral, ExportSpecifier, ExportDeclaration, ExportNamedDeclaration } from '@babel/types'; | ||
@@ -21,5 +21,5 @@ type ImportDeclarationFunc = (specifiers: Array<ImportSpecifier>, source: StringLiteral) => ImportDeclaration; | ||
visitor: { | ||
ImportDeclaration: (path: any, { file: { opts: { filename }, }, }: PluginPass) => void; | ||
ExportNamedDeclaration: (path: any, { file: { opts: { filename }, }, }: PluginPass) => void; | ||
ExportAllDeclaration: (path: any, { file: { opts: { filename }, }, }: PluginPass) => void; | ||
ImportDeclaration: (path: PathDeclaration, { file: { opts: { filename }, }, }: PluginPass) => void; | ||
ExportNamedDeclaration: (path: PathDeclaration, { file: { opts: { filename }, }, }: PluginPass) => void; | ||
ExportAllDeclaration: (path: PathDeclaration, { file: { opts: { filename }, }, }: PluginPass) => void; | ||
}; | ||
@@ -26,0 +26,0 @@ }; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
62911
15
33