feat(dashboard,admin-vite-plugin,admin-bundler,admin-sdk): Rework admin extensions and introduce custom fields API (#9338)
This commit is contained in:
committed by
GitHub
parent
35e69d32f2
commit
d71343d6ab
@@ -4,7 +4,24 @@ import {
|
||||
ExportDefaultDeclaration,
|
||||
ExportNamedDeclaration,
|
||||
File,
|
||||
isArrayExpression,
|
||||
isCallExpression,
|
||||
isFunctionDeclaration,
|
||||
isIdentifier,
|
||||
isJSXElement,
|
||||
isJSXFragment,
|
||||
isMemberExpression,
|
||||
isObjectExpression,
|
||||
isObjectProperty,
|
||||
isStringLiteral,
|
||||
isTemplateLiteral,
|
||||
isVariableDeclaration,
|
||||
isVariableDeclarator,
|
||||
ObjectExpression,
|
||||
ObjectMethod,
|
||||
ObjectProperty,
|
||||
SpreadElement,
|
||||
StringLiteral,
|
||||
} from "@babel/types"
|
||||
|
||||
/**
|
||||
@@ -20,13 +37,33 @@ if (typeof _traverse === "function") {
|
||||
traverse = (_traverse as any).default
|
||||
}
|
||||
|
||||
export { parse, traverse }
|
||||
export {
|
||||
isArrayExpression,
|
||||
isCallExpression,
|
||||
isFunctionDeclaration,
|
||||
isIdentifier,
|
||||
isJSXElement,
|
||||
isJSXFragment,
|
||||
isMemberExpression,
|
||||
isObjectExpression,
|
||||
isObjectProperty,
|
||||
isStringLiteral,
|
||||
isTemplateLiteral,
|
||||
isVariableDeclaration,
|
||||
isVariableDeclarator,
|
||||
parse,
|
||||
traverse,
|
||||
}
|
||||
export type {
|
||||
ExportDefaultDeclaration,
|
||||
ExportNamedDeclaration,
|
||||
File,
|
||||
NodePath,
|
||||
ObjectExpression,
|
||||
ObjectMethod,
|
||||
ObjectProperty,
|
||||
ParseResult,
|
||||
ParserOptions,
|
||||
SpreadElement,
|
||||
StringLiteral,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user