.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @typescript-eslint / experimental-utils / _ts3.4 / dist / ast-utils / eslint-utils / predicates.d.ts
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/@typescript-eslint/experimental-utils/_ts3.4/dist/ast-utils/eslint-utils/predicates.d.ts b/.config/coc/extensions/node_modules/coc-prettier/node_modules/@typescript-eslint/experimental-utils/_ts3.4/dist/ast-utils/eslint-utils/predicates.d.ts
new file mode 100644 (file)
index 0000000..944c9f3
--- /dev/null
@@ -0,0 +1,45 @@
+import { TSESTree } from '../../ts-estree';\r
+declare const isArrowToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: '=>';\r
+};\r
+declare const isNotArrowToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isClosingBraceToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: '}';\r
+};\r
+declare const isNotClosingBraceToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isClosingBracketToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: ']';\r
+};\r
+declare const isNotClosingBracketToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isClosingParenToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: ')';\r
+};\r
+declare const isNotClosingParenToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isColonToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: ':';\r
+};\r
+declare const isNotColonToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isCommaToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: ',';\r
+};\r
+declare const isNotCommaToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isCommentToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.Comment;\r
+declare const isNotCommentToken: <T extends TSESTree.Token>(token: T) => token is Exclude<T, TSESTree.Comment>;\r
+declare const isOpeningBraceToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: '{';\r
+};\r
+declare const isNotOpeningBraceToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isOpeningBracketToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: '[';\r
+};\r
+declare const isNotOpeningBracketToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isOpeningParenToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: '(';\r
+};\r
+declare const isNotOpeningParenToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+declare const isSemicolonToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
+    value: ';';\r
+};\r
+declare const isNotSemicolonToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
+export { isArrowToken, isClosingBraceToken, isClosingBracketToken, isClosingParenToken, isColonToken, isCommaToken, isCommentToken, isNotArrowToken, isNotClosingBraceToken, isNotClosingBracketToken, isNotClosingParenToken, isNotColonToken, isNotCommaToken, isNotCommentToken, isNotOpeningBraceToken, isNotOpeningBracketToken, isNotOpeningParenToken, isNotSemicolonToken, isOpeningBraceToken, isOpeningBracketToken, isOpeningParenToken, isSemicolonToken, };\r
+//# sourceMappingURL=predicates.d.ts.map\r