Christian Smolka
Christian Smolka
If the sources do contain a file with a one-line content (no newline at the end) you'll get an error that a file cannot be opened. # Example Content of...
I was at the point were I was wondering why an embedded HAL resource isn't of the type that it was declared. I debugged and found that little bug. If...
There is this setup: ```typescript export class CustomerResource extends HalResource { @HalProperty() id: number @HalProperty() name: string // @HalProperty(StoreResource) // stores: Array } @Injectable() export class CustomerService { getCustomers(): Promise...