.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
1 import { TSESTree } from '../../ts-estree';\r
2 declare const isArrowToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
3     value: '=>';\r
4 };\r
5 declare const isNotArrowToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
6 declare const isClosingBraceToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
7     value: '}';\r
8 };\r
9 declare const isNotClosingBraceToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
10 declare const isClosingBracketToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
11     value: ']';\r
12 };\r
13 declare const isNotClosingBracketToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
14 declare const isClosingParenToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
15     value: ')';\r
16 };\r
17 declare const isNotClosingParenToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
18 declare const isColonToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
19     value: ':';\r
20 };\r
21 declare const isNotColonToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
22 declare const isCommaToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
23     value: ',';\r
24 };\r
25 declare const isNotCommaToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
26 declare const isCommentToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.Comment;\r
27 declare const isNotCommentToken: <T extends TSESTree.Token>(token: T) => token is Exclude<T, TSESTree.Comment>;\r
28 declare const isOpeningBraceToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
29     value: '{';\r
30 };\r
31 declare const isNotOpeningBraceToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
32 declare const isOpeningBracketToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
33     value: '[';\r
34 };\r
35 declare const isNotOpeningBracketToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
36 declare const isOpeningParenToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
37     value: '(';\r
38 };\r
39 declare const isNotOpeningParenToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
40 declare const isSemicolonToken: (token: TSESTree.Token | TSESTree.Comment) => token is TSESTree.PunctuatorToken & {\r
41     value: ';';\r
42 };\r
43 declare const isNotSemicolonToken: (token: TSESTree.Token | TSESTree.Comment) => boolean;\r
44 export { isArrowToken, isClosingBraceToken, isClosingBracketToken, isClosingParenToken, isColonToken, isCommaToken, isCommentToken, isNotArrowToken, isNotClosingBraceToken, isNotClosingBracketToken, isNotClosingParenToken, isNotColonToken, isNotCommaToken, isNotCommentToken, isNotOpeningBraceToken, isNotOpeningBracketToken, isNotOpeningParenToken, isNotSemicolonToken, isOpeningBraceToken, isOpeningBracketToken, isOpeningParenToken, isSemicolonToken, };\r
45 //# sourceMappingURL=predicates.d.ts.map\r