Skip to content

Commit

Permalink
Deployed using Blazing fast GitHub Pages deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Oct 10, 2023
1 parent c3f9712 commit 758b666
Show file tree
Hide file tree
Showing 14 changed files with 64 additions and 7 deletions.
5 changes: 4 additions & 1 deletion node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,7 @@ declare namespace $ {
class $mol_fetch_response extends $mol_object2 {
readonly native: Response;
constructor(native: Response);
status(): "unknown" | "success" | "inform" | "redirect" | "wrong" | "failed";
status(): "unknown" | "redirect" | "success" | "inform" | "wrong" | "failed";
code(): number;
message(): string;
headers(): Headers;
Expand Down Expand Up @@ -1855,6 +1855,9 @@ declare namespace $ {
class $mol_link extends $mol_view {
uri(): string;
dom_name(): string;
uri_off(): string;
uri_native(): any;
external(): boolean;
attr(): Record<string, any>;
sub(): readonly $mol_view_content[];
arg(): Record<string, any>;
Expand Down
2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5666,6 +5666,15 @@ var $;
dom_name() {
return "a";
}
uri_off() {
return "";
}
uri_native() {
return null;
}
external() {
return false;
}
attr() {
return {
...super.attr(),
Expand Down
9 changes: 9 additions & 0 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5658,6 +5658,15 @@ var $;
dom_name() {
return "a";
}
uri_off() {
return "";
}
uri_native() {
return null;
}
external() {
return false;
}
attr() {
return {
...super.attr(),
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions node.view.tree
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ $mol_image $mol_view
$mol_link $mol_view
uri \
dom_name \a
uri_off \
uri_native null
external false
attr *
^
href <= uri_toggle \
Expand Down
5 changes: 4 additions & 1 deletion web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ declare namespace $ {
class $mol_fetch_response extends $mol_object2 {
readonly native: Response;
constructor(native: Response);
status(): "success" | "unknown" | "inform" | "redirect" | "wrong" | "failed";
status(): "redirect" | "success" | "unknown" | "inform" | "wrong" | "failed";
code(): number;
message(): string;
headers(): Headers;
Expand Down Expand Up @@ -1712,6 +1712,9 @@ declare namespace $ {
class $mol_link extends $mol_view {
uri(): string;
dom_name(): string;
uri_off(): string;
uri_native(): any;
external(): boolean;
attr(): Record<string, any>;
sub(): readonly $mol_view_content[];
arg(): Record<string, any>;
Expand Down
2 changes: 1 addition & 1 deletion web.deps.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions web.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4993,6 +4993,15 @@ var $;
dom_name() {
return "a";
}
uri_off() {
return "";
}
uri_native() {
return null;
}
external() {
return false;
}
attr() {
return {
...super.attr(),
Expand Down
3 changes: 3 additions & 0 deletions web.view.tree
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ $mol_image $mol_view
$mol_link $mol_view
uri \
dom_name \a
uri_off \
uri_native null
external false
attr *
^
href <= uri_toggle \
Expand Down

0 comments on commit 758b666

Please sign in to comment.