export interface ISubfile {
    type: string;
    offset: number;
    length: number;
    data: string[];
}
