Skip to content

Commit 8eb4a88

Browse files
committed
first commit
1 parent 52eb713 commit 8eb4a88

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+8268
-0
lines changed

bun.lock

Lines changed: 878 additions & 0 deletions
Large diffs are not rendered by default.

docs/bundle.js

Lines changed: 67 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/bundle.js.LICENSE.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/**
2+
* @license
3+
* Copyright 2014 Travis Webb
4+
* SPDX-License-Identifier: MIT
5+
*/
6+
7+
/**
8+
* @license
9+
* Copyright 2017 Google LLC
10+
* SPDX-License-Identifier: BSD-3-Clause
11+
*/
12+
13+
/**
14+
* @license
15+
* Copyright 2020 Google LLC
16+
* SPDX-License-Identifier: BSD-3-Clause
17+
*/
18+
19+
/**
20+
* @license
21+
* Copyright 2021 Google LLC
22+
* SPDX-License-Identifier: BSD-3-Clause
23+
*/

docs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Typescript Vanilla</title><link rel="shortcut icon" href="./public/ts.png" type="image/x-icon"><script defer="defer" src="bundle.js"></script></head><body><main id="content"></main><app-footer></app-footer></body></html>

docs/public/ts.png

11.3 KB
Loading

docs/script/app/app.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
interface AppConfig {
2+
content: HTMLElement;
3+
}
4+
export default class App {
5+
private content;
6+
constructor({ content }: AppConfig);
7+
renderPage(): Promise<void>;
8+
}
9+
export {};
10+
//# sourceMappingURL=app.d.ts.map

docs/script/app/app.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/script/app/url-parser.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export declare function getActivePathname(): string;
2+
//# sourceMappingURL=url-parser.d.ts.map

docs/script/app/url-parser.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/script/components/fab.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { LitElement, type PropertyDeclarations } from "lit";
2+
export declare class FabBtn extends LitElement {
3+
showMenu: boolean;
4+
static properties: PropertyDeclarations;
5+
protected createRenderRoot(): HTMLElement | DocumentFragment;
6+
private toggleMenu;
7+
protected render(): import("lit-html").TemplateResult<1>;
8+
}
9+
//# sourceMappingURL=fab.d.ts.map

0 commit comments

Comments
 (0)