16 lines
598 B
Plaintext
16 lines
598 B
Plaintext
export type Options = [
|
|
{
|
|
allowAny?: boolean;
|
|
allowedPromiseNames?: string[];
|
|
checkArrowFunctions?: boolean;
|
|
checkFunctionDeclarations?: boolean;
|
|
checkFunctionExpressions?: boolean;
|
|
checkMethodDeclarations?: boolean;
|
|
}
|
|
];
|
|
export type MessageIds = 'missingAsync' | 'missingAsyncHybridReturn';
|
|
declare const _default: import("@typescript-eslint/utils/ts-eslint").RuleModule<MessageIds, Options, import("../../rules").ESLintPluginDocs, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
|
|
name: string;
|
|
};
|
|
export default _default;
|