2024-08-18 15:25:31 -05:00
|
|
|
export class Chunk {
|
2024-10-11 01:09:12 -05:00
|
|
|
Key: string;
|
2023-08-27 18:17:52 -05:00
|
|
|
Index: number;
|
|
|
|
|
Start: number;
|
|
|
|
|
End: number;
|
|
|
|
|
|
2024-10-11 01:09:12 -05:00
|
|
|
constructor(key: string, start: number, end: number, index: number) {
|
|
|
|
|
this.Key = key;
|
2023-08-27 18:17:52 -05:00
|
|
|
this.Start = start;
|
|
|
|
|
this.End = end;
|
|
|
|
|
this.Index = index;
|
|
|
|
|
}
|
|
|
|
|
}
|