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 Nov 4, 2023
1 parent 56eef0f commit eba45e2
Show file tree
Hide file tree
Showing 13 changed files with 101 additions and 5 deletions.
6 changes: 6 additions & 0 deletions app/docs/-/node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9699,6 +9699,12 @@ declare namespace $ {
}
}

declare namespace $.$$ {
class $mol_string_demo extends $.$mol_string_demo {
broken(next?: string): never;
}
}

declare namespace $ {
class $mol_switch_demo extends $mol_example {
title(): string;
Expand Down
2 changes: 1 addition & 1 deletion app/docs/-/node.deps.json

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions app/docs/-/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -39530,6 +39530,21 @@ var $;
;
"use strict";
var $;
(function ($) {
var $$;
(function ($$) {
class $mol_string_demo extends $.$mol_string_demo {
broken(next) {
return $mol_fail(new Error('Demo error'));
}
}
$$.$mol_string_demo = $mol_string_demo;
})($$ = $.$$ || ($.$$ = {}));
})($ || ($ = {}));
//mol/string/demo/demo.view.ts
;
"use strict";
var $;
(function ($) {
class $mol_switch_demo extends $mol_example {
title() {
Expand Down
2 changes: 1 addition & 1 deletion app/docs/-/node.js.map

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions app/docs/-/node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39530,6 +39530,21 @@ var $;
;
"use strict";
var $;
(function ($) {
var $$;
(function ($$) {
class $mol_string_demo extends $.$mol_string_demo {
broken(next) {
return $mol_fail(new Error('Demo error'));
}
}
$$.$mol_string_demo = $mol_string_demo;
})($$ = $.$$ || ($.$$ = {}));
})($ || ($ = {}));
//mol/string/demo/demo.view.ts
;
"use strict";
var $;
(function ($) {
class $mol_switch_demo extends $mol_example {
title() {
Expand Down
15 changes: 15 additions & 0 deletions app/docs/-/node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -39522,6 +39522,21 @@ var $;
;
"use strict";
var $;
(function ($) {
var $$;
(function ($$) {
class $mol_string_demo extends $.$mol_string_demo {
broken(next) {
return $mol_fail(new Error('Demo error'));
}
}
$$.$mol_string_demo = $mol_string_demo;
})($$ = $.$$ || ($.$$ = {}));
})($ || ($ = {}));
//mol/string/demo/demo.view.ts
;
"use strict";
var $;
(function ($) {
class $mol_switch_demo extends $mol_example {
title() {
Expand Down
2 changes: 1 addition & 1 deletion app/docs/-/node.test.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions app/docs/-/web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9760,6 +9760,12 @@ declare namespace $ {
}
}

declare namespace $.$$ {
class $mol_string_demo extends $.$mol_string_demo {
broken(next?: string): never;
}
}

declare namespace $ {
class $mol_switch_demo extends $mol_example {
title(): string;
Expand Down
2 changes: 1 addition & 1 deletion app/docs/-/web.deps.json

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions app/docs/-/web.js
Original file line number Diff line number Diff line change
Expand Up @@ -39829,6 +39829,21 @@ var $;
;
"use strict";
var $;
(function ($) {
var $$;
(function ($$) {
class $mol_string_demo extends $.$mol_string_demo {
broken(next) {
return $mol_fail(new Error('Demo error'));
}
}
$$.$mol_string_demo = $mol_string_demo;
})($$ = $.$$ || ($.$$ = {}));
})($ || ($ = {}));
//mol/string/demo/demo.view.ts
;
"use strict";
var $;
(function ($) {
class $mol_switch_demo extends $mol_example {
title() {
Expand Down
2 changes: 1 addition & 1 deletion app/docs/-/web.js.map

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions app/docs/-/web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39829,6 +39829,21 @@ var $;
;
"use strict";
var $;
(function ($) {
var $$;
(function ($$) {
class $mol_string_demo extends $.$mol_string_demo {
broken(next) {
return $mol_fail(new Error('Demo error'));
}
}
$$.$mol_string_demo = $mol_string_demo;
})($$ = $.$$ || ($.$$ = {}));
})($ || ($ = {}));
//mol/string/demo/demo.view.ts
;
"use strict";
var $;
(function ($) {
class $mol_switch_demo extends $mol_example {
title() {
Expand Down
9 changes: 9 additions & 0 deletions string/demo/demo.view.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace $.$$ {
export class $mol_string_demo extends $.$mol_string_demo {

broken( next?: string ) {
return $mol_fail( new Error( 'Demo error' ) )
}

}
}

0 comments on commit eba45e2

Please sign in to comment.