astro-ghostcms/.pnpm-store/v3/files/e7/1de3c2360819feae88a5954ee66...

18 lines
625 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isSymbolFromDefaultLibrary = void 0;
function isSymbolFromDefaultLibrary(program, symbol) {
if (!symbol) {
return false;
}
const declarations = symbol.getDeclarations() ?? [];
for (const declaration of declarations) {
const sourceFile = declaration.getSourceFile();
if (program.isSourceFileDefaultLibrary(sourceFile)) {
return true;
}
}
return false;
}
exports.isSymbolFromDefaultLibrary = isSymbolFromDefaultLibrary;
//# sourceMappingURL=isSymbolFromDefaultLibrary.js.map