All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.web.filesystem.FileSystemDirectoryHandle.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

package web.filesystem

import js.core.ReadonlyArray
import js.core.Void
import kotlin.js.Promise

sealed external class FileSystemDirectoryHandle :
    FileSystemHandle {
    /* val kind: "directory" */
    fun getDirectoryHandle(
        name: String,
        options: FileSystemGetDirectoryOptions = definedExternally,
    ): Promise

    fun getFileHandle(
        name: String,
        options: FileSystemGetFileOptions = definedExternally,
    ): Promise

    fun removeEntry(
        name: String,
        options: FileSystemRemoveOptions = definedExternally,
    ): Promise

    fun resolve(possibleDescendant: FileSystemHandle): Promise?>
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy