UNPKG
sql-formatter-ast2
Version:
latest (15.6.5)
15.6.5
Format whitespace in a SQL query to make it more readable
sql-formatter-ast2
/
dist
/
cjs
/
lexer
/
NestedComment.d.ts
11 lines
(10 loc)
•
305 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
RegExpLike
}
from
'./TokenizerEngine.js'
;
/** * An object mimicking a regular expression, * for matching nested block-comments. */
export
declare
class
NestedComment
implements
RegExpLike
{
lastIndex
:
number
;
exec
(
input
:
string
):
string
[] |
null
;
private
matchSection; }