mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-29 03:40:57 +00:00
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
/**
|
|
* @deprecated Use LinterType instead. It will be removed in Nx v22.
|
|
*/
|
|
export declare enum Linter {
|
|
EsLint = "eslint",
|
|
None = "none"
|
|
}
|
|
export type LinterType = 'eslint' | 'none';
|
|
//# sourceMappingURL=linter.d.ts.map
|