export interface MetaData {
    created?: Date;
    storyKey: string;
    hydrate: boolean;
    schemaVersion: string;
    version: string;
    title: string;
    updated?: Date;
    image?: string;
    playerType: string;
    description?: string;
    framework: string;
    [key: string]: any;
}
