UNPKG

@sap/eslint-plugin-cds

Version:

ESLint plugin including recommended SAP Cloud Application Programming model and environment rules

16 lines (13 loc) 320 B
export declare namespace CdsContextTracker { type VariableType = 'let' | 'const' | 'var' | 'import' type Variable = { name: string, original: string type: VariableType, isCdsVariable: boolean } type Scope = { name: string, variables: Variable[] } }