@unified-latex/unified-latex-util-align
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -11,3 +11,5 @@ import * as Ast from "@unified-latex/unified-latex-types"; | ||
export declare function createMatchers(rowSepMacros: string[], colSep: string[]): { | ||
isRowSep: Ast.TypeGuard<Ast.Macro>; | ||
isRowSep: Ast.TypeGuard<Ast.Macro & { | ||
content: string; | ||
}>; | ||
isColSep: (node: Ast.Node) => boolean; | ||
@@ -14,0 +16,0 @@ isWhitespace: (node: Ast.Node) => boolean; |
{ | ||
"name": "@unified-latex/unified-latex-util-align", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Tools for manipulating unified-latex ASTs", | ||
@@ -8,5 +8,5 @@ "main": "index.js", | ||
"dependencies": { | ||
"@unified-latex/unified-latex-types": "^1.1.0", | ||
"@unified-latex/unified-latex-util-match": "^1.1.0", | ||
"@unified-latex/unified-latex-util-pegjs": "^1.1.0" | ||
"@unified-latex/unified-latex-types": "^1.2.0", | ||
"@unified-latex/unified-latex-util-match": "^1.2.0", | ||
"@unified-latex/unified-latex-util-pegjs": "^1.2.0" | ||
}, | ||
@@ -13,0 +13,0 @@ "repository": { |
@@ -36,3 +36,3 @@ <!-- DO NOT MODIFY --> | ||
): { | ||
isRowSep: Ast.TypeGuard<Ast.Macro>; | ||
isRowSep: Ast.TypeGuard<Ast.Macro & { content: string }>; | ||
isColSep: (node: Ast.Node) => boolean; | ||
@@ -39,0 +39,0 @@ isWhitespace: (node: Ast.Node) => boolean; |
Sorry, the diff of this file is not supported yet
15210
130