entity icon indicating copy to clipboard operation
entity copied to clipboard

A TypeScript Library for encoding and decoding entities

Results 4 entity issues
Sort by recently updated
recently updated
newest added

```typescript class A extends Entity { public foo: string = null; } class B extends Entity { @Type(A) children: A[] = null; } const instance = EntityBuilder.buildOne(B, { children: [...

## Feature suggestion Add an `@Output(shouldOutput = true)` property decorator. This would determine whether the property gets included in the output of `toJson`. ## Alternative solutions Add a more versatile...

Hey guys ! First of all, great library you got here. I disagreed with you on some points, mainly the fact that you choose to implement annotated aliases and case...

## Suggestion Add a `clone` method to the base Entity to support creating a deep copy. Note that this will impact #11 as we'd need to handle cloning fields not...