{ "Create Example Lit Module": { "prefix": "lit-module-example", "body": [ "import { html, css, LitElement } from \"lit\";", "import { customElement, property } from \"lit/decorators.js\";", "", "export const $1ModuleStyles = [css`", " .welcome {", " font-size: 2em;", " text-align: center;", " }", "`;]", "", "export interface ${1/(.*)/${1:/capitalize}/}ModuleProps {", " name: string;", " $2", "}", "", "export function $1ModuleTemplate(props: ${1/(.*)/${1:/capitalize}/}ModuleProps) {", " return html`