Style fix.

This commit is contained in:
marko1616
2024-08-22 05:42:00 +08:00
parent fdda602a76
commit b0dcc5f9df
4 changed files with 25 additions and 20 deletions

View File

@@ -22,7 +22,7 @@ export interface MessageBoxResult {
export abstract class FileTransfer {
abstract getName (): string
abstract getRelativePath (): string
abstract getRelativePath (): string | null
abstract getMode (): number
abstract getSize (): number
abstract close (): void
@@ -204,8 +204,8 @@ export class HTMLFileUpload extends FileUpload {
return this.file.name
}
getRelativePath (): string {
return ''
getRelativePath (): null {
return null
}
getMode (): number {