lit-analyzer
Version:
CLI that type checks bindings in lit-html templates
14 lines • 482 B
TypeScript
import { SimpleType } from "ts-simple-type";
/**
* Checks whether a type is a lit-html 1.x or Lit 2 directive.
*/
export declare function isLitDirective(type: SimpleType): boolean;
/**
* Checks whether a type is a lit-html 1.x directive.
*/
export declare function isLit1Directive(type: SimpleType): boolean;
/**
* Checks whether a type is a Lit 2 directive.
*/
export declare function isLit2Directive(type: SimpleType): boolean;
//# sourceMappingURL=is-lit-directive.d.ts.map