UNPKG

@sasjs/lint

Version:

Linting and formatting for SAS code

9 lines (8 loc) 329 B
import { LintConfig } from '../types'; interface DataSectionsDetail { start: number; end: number; } export declare const getDataSectionsDetail: (text: string, config: LintConfig) => DataSectionsDetail[]; export declare const checkIsDataLine: (dataSections: DataSectionsDetail[], lineIndex: number) => boolean; export {};