10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
![]() |
export interface LinterInfo {
|
||
|
path?: string;
|
||
|
hashId?: string;
|
||
|
parentSelectors: string[];
|
||
|
}
|
||
|
|
||
|
export interface Linter {
|
||
|
(key: string, value: string | number, info: LinterInfo): void;
|
||
|
}
|