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