@amodx/ncs 0.0.21 → 0.0.22

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.
@@ -31,5 +31,5 @@ type RegisteredComponent<ComponentSchema extends object = any, Data extends any
31
31
  data: ComponentRegisterData<ComponentSchema, Data, Shared>;
32
32
  default: ComponentCursor<ComponentSchema, Data, Shared>;
33
33
  }) & ((schema?: Partial<ComponentSchema> | null | undefined, schemaView?: string | null) => CreateComponentData<ComponentSchema>);
34
- export declare const registerComponent: <Data extends unknown = any, Shared extends unknown = any, ComponentSchema extends object = any>(data: ComponentRegisterData<ComponentSchema, Data, Shared>) => RegisteredComponent<ComponentSchema, Data, Shared>;
34
+ export declare const registerComponent: <Data extends any = any, Shared extends any = any, ComponentSchema extends object = any>(data: ComponentRegisterData<ComponentSchema, Data, Shared>) => RegisteredComponent<ComponentSchema, Data, Shared>;
35
35
  export {};
@@ -12,7 +12,7 @@ export declare function createBaseSchemaCursor(): {
12
12
  getInstance(): number;
13
13
  getCursor(): SchemaArrayCursor;
14
14
  getSchemaIndex(): import("../Schema.types").SchemaCursorIndex<any>;
15
- clone(): any;
15
+ clone(): /*elided*/ any;
16
16
  toJSON(): any;
17
17
  };
18
18
  };
@@ -16,7 +16,7 @@ export declare function createSchemaBinaryObjectCursorClass(schema: Schema): {
16
16
  getInstance(): number;
17
17
  getCursor(): SchemaArrayCursor;
18
18
  getSchemaIndex(): import("../Schema.types").SchemaCursorIndex<any>;
19
- clone(): any;
19
+ clone(): /*elided*/ any;
20
20
  toJSON(): any;
21
21
  };
22
22
  };
@@ -12,7 +12,7 @@ export declare function createSchemaObjectCursorClass(schema: Schema): {
12
12
  getInstance(): number;
13
13
  getCursor(): SchemaArrayCursor;
14
14
  getSchemaIndex(): import("../Schema.types").SchemaCursorIndex<any>;
15
- clone(): any;
15
+ clone(): /*elided*/ any;
16
16
  toJSON(): any;
17
17
  };
18
18
  };
@@ -11,7 +11,7 @@ export declare function createSchemaTypedArrayCursorClass(schema: Schema): {
11
11
  getInstance(): number;
12
12
  getCursor(): SchemaArrayCursor;
13
13
  getSchemaIndex(): import("../Schema.types").SchemaCursorIndex<any>;
14
- clone(): any;
14
+ clone(): /*elided*/ any;
15
15
  toJSON(): any;
16
16
  };
17
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amodx/ncs",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "module": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",