import { IImmutable as ITranscriptImmutable, IMutable as ITranscriptMutable } from "./track/ITranscript"; import { IImmutable as IVocabularyImmutable, IMutable as IVocabularyMutable } from "./track/IVocabulary"; import Type from "./track/Type"; export interface IBaseImmutable { readonly type: T; } export interface IBaseMutable extends IBaseImmutable { } export declare type IMutable = IVocabularyMutable | ITranscriptMutable; export declare type IImmutable = IVocabularyImmutable | ITranscriptImmutable; export default IMutable;