marko 5.29.1 → 5.29.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,10 @@
1
+ export interface Input<T> {
2
+ value: readonly [T];
3
+ then?: { renderBody: Marko.Body<[Awaited<T>]> };
4
+ catch?: { renderBody: Marko.Body<[unknown]> };
5
+ placeholder?: { renderBody: Marko.Body };
6
+ "client-reorder"?: boolean;
7
+ name?: string;
8
+ timeout?: number;
9
+ "show-after"?: string;
10
+ }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "5.29.1",
3
+ "version": "5.29.2",
4
4
  "license": "MIT",
5
5
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
6
6
  "dependencies": {
7
7
  "@marko/compiler": "^5.31.1",
8
- "@marko/translator-default": "^5.29.1",
8
+ "@marko/translator-default": "^5.29.2",
9
9
  "app-module-path": "^2.2.0",
10
10
  "argly": "^1.2.0",
11
11
  "browser-refresh-client": "1.1.4",
@@ -0,0 +1,10 @@
1
+ export interface Input<T> {
2
+ value: readonly [T];
3
+ then?: { renderBody: Marko.Body<[Awaited<T>]> };
4
+ catch?: { renderBody: Marko.Body<[unknown]> };
5
+ placeholder?: { renderBody: Marko.Body };
6
+ "client-reorder"?: boolean;
7
+ name?: string;
8
+ timeout?: number;
9
+ "show-after"?: string;
10
+ }
@@ -1,13 +0,0 @@
1
- /**
2
- * @template T
3
- * @typedef {{
4
- * value: readonly [T];
5
- * then?: { renderBody: Marko.Body<[Awaited<T>]> };
6
- * catch?: { renderBody: Marko.Body<[unknown]> };
7
- * placeholder?: { renderBody: Marko.Body };
8
- * "client-reorder"?: boolean;
9
- * name?: string;
10
- * timeout?: number;
11
- * "show-after"?: string;
12
- * }} Input
13
- */
@@ -1,13 +0,0 @@
1
- /**
2
- * @template T
3
- * @typedef {{
4
- * value: readonly [T];
5
- * then?: { renderBody: Marko.Body<[Awaited<T>]> };
6
- * catch?: { renderBody: Marko.Body<[unknown]> };
7
- * placeholder?: { renderBody: Marko.Body };
8
- * "client-reorder"?: boolean;
9
- * name?: string;
10
- * timeout?: number;
11
- * "show-after"?: string;
12
- * }} Input
13
- */