@gi-tcg/gts-runtime 0.4.5 → 0.5.0
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/dist/index.d.ts +1 -2
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/symbols.ts +0 -3
package/dist/index.d.ts
CHANGED
|
@@ -28,7 +28,6 @@ declare namespace AttributeReturn {
|
|
|
28
28
|
type Meta = "~meta";
|
|
29
29
|
type Action = "~action";
|
|
30
30
|
type NamedDefinition = "~namedDefinition";
|
|
31
|
-
type Prelude = "~prelude";
|
|
32
31
|
//#endregion
|
|
33
32
|
//#region src/view.d.ts
|
|
34
33
|
type AttributeName = string | symbol;
|
|
@@ -264,4 +263,4 @@ type SimpleViewModel<T, Options extends SimpleViewModelOptions = {}> = IViewMode
|
|
|
264
263
|
}, []>;
|
|
265
264
|
declare function defineSimpleViewModel<const T extends StandardJSONSchemaV1, const Options extends SimpleViewModelOptions = {}>(schema: T, options?: Options): SimpleViewModel<StandardJSONSchemaV1.InferInput<T>, Options>;
|
|
266
265
|
//#endregion
|
|
267
|
-
export { type AttributeReturn as AR, type AttributeReturn, type Action, type AttributeDefinition, type IViewModel, type Meta, type NamedAttributesNode, type NamedDefinition, type
|
|
266
|
+
export { type AttributeReturn as AR, type AttributeReturn, type Action, type AttributeDefinition, type IViewModel, type Meta, type NamedAttributesNode, type NamedDefinition, type SimpleViewModel, type SimpleViewModelOptions, type SingleAttributeNode, type View, createBinding, createDefine, defineSimpleViewModel, defineViewModel };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -9,7 +9,7 @@ export {
|
|
|
9
9
|
type SimpleViewModelOptions,
|
|
10
10
|
} from "./simple_view_model.ts";
|
|
11
11
|
export type { AttributeReturn, AR } from "./attribute_return.ts";
|
|
12
|
-
export type { Action,
|
|
12
|
+
export type { Action, Meta, NamedDefinition } from "./symbols.ts";
|
|
13
13
|
|
|
14
14
|
export {
|
|
15
15
|
createBinding,
|