persona-community-5/.pnpm-store/v3/files/68/fe8abf909217e99b8b926e9e018edae090e049abf39464dff5a5e4a1d7346ad9573bc8a8fe3ecfe73bb1d8a6cc9c243220484eed25168c95d154abb74b7003
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

8 lines
363 B
Plaintext

import type { TSESTree } from '../ts-estree';
declare const LINEBREAK_MATCHER: RegExp;
/**
* Determines whether two adjacent tokens are on the same line
*/
declare function isTokenOnSameLine(left: TSESTree.Node | TSESTree.Token, right: TSESTree.Node | TSESTree.Token): boolean;
export { isTokenOnSameLine, LINEBREAK_MATCHER };
//# sourceMappingURL=misc.d.ts.map