persona-community-5/.pnpm-store/v3/files/76/9f2f523f15956ac23abc3b4d776409ee4cff2aee8de9672f40c793b414e504c57e01c1ce5d5f05a404bd3d1c7dca75a3874b194dc7dfbac07f076f6af648fd
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

15 lines
517 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getTypeArguments = getTypeArguments;
/**
* @deprecated This is in TypeScript as of 3.7.
*/
function getTypeArguments(type, checker) {
// getTypeArguments was only added in TS3.7
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
if (checker.getTypeArguments) {
return checker.getTypeArguments(type);
}
return type.typeArguments ?? [];
}
//# sourceMappingURL=getTypeArguments.js.map