UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

17 lines (13 loc) 333 B
import { IContentfulAsset, } from '../interfaces/IContentfulAsset'; import { IPassageProps, } from './IPassageProps'; import { registry, } from '../../passages/passages-manifest'; type RegistryType = typeof registry; export interface IPassage extends IContentfulAsset<IPassageProps> { readonly name: keyof RegistryType; }