followlinks

This commit is contained in:
Art Lowel
2020-01-17 17:50:24 +01:00
parent ad4e8eeb8c
commit 44facb8dcb
68 changed files with 636 additions and 283 deletions

View File

@@ -0,0 +1,8 @@
import { HALLink } from './hal-link.model';
export class HALResource {
_links: {
self: HALLink
[k: string]: HALLink;
};
}