accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
24 lines (20 loc) • 437 B
text/typescript
import {
IContentfulAsset,
} from '../interfaces/IContentfulAsset';
import {
IPassageProps,
} from './IPassageProps';
import {
IPrecedenceWeighted,
} from '../interfaces/IPrecedenceWeighted';
import {
registry,
} from '../../headers/headers-manifest';
type RegistryType = typeof registry;
export interface IHeader
extends
IContentfulAsset<IPassageProps>,
IPrecedenceWeighted
{
readonly name: keyof RegistryType;
}