mirror of
https://github.com/sasjs/lint.git
synced 2025-12-10 17:34:36 +00:00
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
export interface Macro {
|
|
name: string
|
|
startLineNumbers: number[]
|
|
endLineNumber: number | null
|
|
declarationLines: string[]
|
|
terminationLine: string
|
|
declaration: string
|
|
termination: string
|
|
parentMacro: string
|
|
hasMacroNameInMend: boolean
|
|
mismatchedMendMacroName: string
|
|
}
|