We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb2f8a7 commit 1a40d7cCopy full SHA for 1a40d7c
README.md
@@ -13,7 +13,6 @@ const items = [
13
]
14
15
const listHoge = (_params: PathParams): Promise<Buffer> => {
16
- console.log("hoge");
17
const list = new ListWidget<{ id: number, hoge: string }>();
18
items.forEach((item) => {
19
list.setItem(item, (item: { id: number, hoge: string}): string => item.hoge);
app.ts
@@ -26,7 +26,6 @@ export class DenopsApp {
26
),
27
component: route.component,
28
}));
29
- console.log(this.#routes);
30
}
31
32
addCommand(name: string, path: string) {
0 commit comments