graycoreio/daffodil

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

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * An object that has a canonical location referenced by a URL.
 */
export interface DaffCanonicallyLocatable {
  /**
   * The URL describing the canonical location of the entity.
   */
  canonicalUrl: string;
}