graycoreio/daffodil

View on GitHub
libs/core/src/locateable/locateable.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * An object that has a location referenced by a URL.
 */
export interface DaffLocatable {
  /**
   * The URL describing the location of the entity.
   * It should be relative to the domain root with a leading slash, i.e. `/path/to/entity`.
   */
  url: string;
}