mirror of
https://github.com/mblanke/ThreatHunt.git
synced 2026-03-01 22:00:22 -05:00
8 lines
327 B
TypeScript
8 lines
327 B
TypeScript
export = getTokenBeforeClosingBracket;
|
|
/**
|
|
* Find the token before the closing bracket.
|
|
* @param {ASTNode} node - The JSX element node.
|
|
* @returns {Token} The token before the closing bracket.
|
|
*/
|
|
declare function getTokenBeforeClosingBracket(node: ASTNode): Token;
|
|
//# sourceMappingURL=getTokenBeforeClosingBracket.d.ts.map
|