cleanup
This commit is contained in:
@@ -54,7 +54,7 @@ export class UmbApp extends LitElement {
|
||||
|
||||
render() {
|
||||
return html`
|
||||
${!this._authorized
|
||||
${this._authorized
|
||||
? html`<umb-auth-layout>
|
||||
<umb-login @login=${this._handleLogin}></umb-login>
|
||||
</umb-auth-layout>`
|
||||
|
||||
26
src/Umbraco.Web.UI.Client/types/my-element.d.ts
vendored
26
src/Umbraco.Web.UI.Client/types/my-element.d.ts
vendored
@@ -1,26 +0,0 @@
|
||||
import { LitElement } from 'lit';
|
||||
/**
|
||||
* An example element.
|
||||
*
|
||||
* @slot - This element has a slot
|
||||
* @csspart button - The button
|
||||
*/
|
||||
export declare class MyElement extends LitElement {
|
||||
static styles: import("lit").CSSResult;
|
||||
/**
|
||||
* The name to say "Hello" to.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* The number of times the button has been clicked.
|
||||
*/
|
||||
count: number;
|
||||
render(): import("lit-html").TemplateResult<1>;
|
||||
private _onClick;
|
||||
foo(): string;
|
||||
}
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
'my-element': MyElement;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user