import { IImmutable as ITranscriptImmutable, IMutable as ITranscriptMutable } from "./track/ITranscript"; import { IImmutable as IVocabularyImmutable, IMutable as IVocabularyMutable } from "./track/IVocabulary"; export interface IImmutable { readonly vocabulary?: IVocabularyImmutable; readonly transcript?: ITranscriptImmutable; } export interface IMutable extends IImmutable { vocabulary?: IVocabularyMutable; transcript?: ITranscriptMutable; } export default IMutable;