Appearance
@loontail/minecraft-kit / VerificationFileResult
Type Alias: VerificationFileResult
ts
type VerificationFileResult = {
actualSha1?: string;
actualSize?: number;
category: VerifyFileCategory;
expectedSha1?: string;
expectedSize?: number;
path: string;
status: VerifyFileStatus;
url?: string;
};Defined in: src/types/verify.ts:64
A single verified file.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
actualSha1? | readonly | string | - | src/types/verify.ts:69 |
actualSize? | readonly | number | - | src/types/verify.ts:71 |
category | readonly | VerifyFileCategory | - | src/types/verify.ts:66 |
expectedSha1? | readonly | string | - | src/types/verify.ts:68 |
expectedSize? | readonly | number | - | src/types/verify.ts:70 |
path | readonly | string | - | src/types/verify.ts:65 |
status | readonly | VerifyFileStatus | - | src/types/verify.ts:67 |
url? | readonly | string | Optional URL where the file can be re-downloaded if it's broken. | src/types/verify.ts:73 |