@paperbits/common
Version:
Paperbits common components.
24 lines (21 loc) • 429 B
text/typescript
/**
* Layout metadata.
*/
export interface LayoutMetadata {
/**
* Layout title, e.g. Master page.
*/
title?: string;
/**
* Layout description.
*/
description?: string;
/**
* Template of URL where layout needs to be applied.
*/
permalinkTemplate?: string;
/**
* Key of the document describing content.
*/
contentKey?: string;
}