forked from lix-project/lix-website
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import { Rule, Scope } from 'eslint';
|
|
|
|
declare function declaredScope(
|
|
context: Rule.RuleContext,
|
|
name: string
|
|
): Scope.Scope['type'] | undefined;
|
|
|
|
export default declaredScope;
|