CommunitySolidServer/src/ldp/representation/NamedRepresentation.ts
2020-07-02 10:15:01 +02:00

13 lines
322 B
TypeScript

import { Representation } from './Representation';
import { ResourceIdentifier } from './ResourceIdentifier';
/**
* A {@link Representation} with an identifier.
*/
export interface NamedRepresentation extends Representation {
/**
* The identifier of this representation.
*/
identifier?: ResourceIdentifier;
}