lit-analyzer
Version:
CLI that type checks bindings in lit-html templates
14 lines • 497 B
TypeScript
/**
* Returns true if the given input is a valid attribute name
* @param {string} input
* @return {boolean}
*/
export declare function isValidAttributeName(input: string): boolean;
/**
* Returns true if the given input is a valid custom element name.
* @param {string} input
* @return {boolean}
*/
export declare function isValidCustomElementName(input: string): boolean;
export declare function isCustomElementTagName(tagName: string): boolean;
//# sourceMappingURL=is-valid-name.d.ts.map