persona-community-5/.pnpm-store/v3/files/ad/c8c70a4c2e62d130b941ebada118edee9c980bfb06b35c86413058e549accacf1cad94682d3af55c47e3e2f2e6492a4c8534d2060e3df0d2638bec71a5b156
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
212 B
Plaintext

interface Node {
next: Node | null;
}
interface Constructor<T> {
new(): T;
}
declare function reusify<T extends Node>(constructor: Constructor<T>): {
get(): T;
release(node: T): void;
};
export = reusify;