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