marko 6.0.44 → 6.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "6.0.44",
3
+ "version": "6.0.45",
4
4
  "description": "Optimized runtime for Marko templates.",
5
5
  "keywords": [
6
6
  "api",
@@ -1,8 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input<T> {
4
- value: T;
5
- content: Marko.Body<[Awaited<T>]>
6
- }
7
-
8
- return=input.value
@@ -1,7 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input<T> {
4
- value: T;
5
- }
6
-
7
- return=input.value
@@ -1,5 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input {
4
- value?: unknown;
5
- }
@@ -1,5 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export type Input<T> = T;
4
-
5
- return=input
@@ -1,5 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input {
4
- value?(): unknown;
5
- }
@@ -1,5 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input {
4
- value?(): void;
5
- }
@@ -1,3 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- return="" as string
@@ -1,8 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input<T> {
4
- value: T;
5
- valueChange?: (newValue: T) => void;
6
- }
7
-
8
- return=input.value valueChange=input.valueChange!
@@ -1,7 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export type Input<T extends object> = T & {
4
- onMount?(): unknown;
5
- onUpdate?(): unknown;
6
- onDestroy?(): unknown;
7
- };
@@ -1,5 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input {
4
- value: unknown;
5
- }
@@ -1,5 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input {
4
- value?(): unknown;
5
- }
@@ -1,7 +0,0 @@
1
- /** File for types only, not actual implementation **/
2
-
3
- export interface Input {
4
- content: Marko.Body,
5
- placeholder?: Marko.AttrTag<{ content?: Marko.Body }>,
6
- catch?: Marko.AttrTag<{ content?: Marko.Body<[unknown]> }>,
7
- }