Skip to content

Commit c25722c

Browse files
author
Vlad Balin
committed
Updated to the last TS version, fixed compilation issues
1 parent 8b2d4c9 commit c25722c

File tree

14 files changed

+1253
-1122
lines changed

14 files changed

+1253
-1122
lines changed

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/object-plus/tools.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ export declare function keys(o: any): string[];
3636
export declare function once(func: Function): Function;
3737
export declare function notEqual(a: any, b: any): boolean;
3838
export declare function hashMap(obj?: any): any;
39-
export {};

lib/record/attributes/index.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ export * from './attrDef';
99
import { AnyType } from './any';
1010
import { ConstructorsMixin } from './updates';
1111
import { IOEndpoint } from '../../io-tools';
12-
export interface RecordAttributesMixin extends ConstructorsMixin {
12+
export interface ParseMixin {
13+
_parse?: (json: any) => object;
14+
}
15+
export interface RecordAttributesMixin extends ConstructorsMixin, ParseMixin {
1316
_attributes: AttributeDescriptors;
1417
_attributesArray: AnyType[];
1518
properties: PropertyDescriptorMap;

lib/record/attributes/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/relations/from.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

lib/relations/subsetOf.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

0 commit comments

Comments
 (0)