Urara-Blog/node_modules/.pnpm-store/v3/files/ae/d1ad7ffa5ce65e6398d0c749b2b4070d9f628c609546f60aa8fef3c5892841184558258df44bf8913011ae678801a708183d92cafac919dbcf70df69afd1a4
2022-08-14 01:14:53 +08:00

19 lines
No EOL
746 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isSyntheticExpression = exports.isRestTypeNode = exports.isOptionalTypeNode = void 0;
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("../2.9/node"), exports);
const ts = require("typescript");
function isOptionalTypeNode(node) {
return node.kind === ts.SyntaxKind.OptionalType;
}
exports.isOptionalTypeNode = isOptionalTypeNode;
function isRestTypeNode(node) {
return node.kind === ts.SyntaxKind.RestType;
}
exports.isRestTypeNode = isRestTypeNode;
function isSyntheticExpression(node) {
return node.kind === ts.SyntaxKind.SyntheticExpression;
}
exports.isSyntheticExpression = isSyntheticExpression;
//# sourceMappingURL=node.js.map