mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 16:49:31 +08:00
8 lines
No EOL
358 B
Text
8 lines
No EOL
358 B
Text
import { 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 |