Skip to content

file

A file returned from a dialog.

Summary

type file = item & {
    Read: (self: file) -> string,
    Write: (self: file, content: string) -> (),
    Append: (self: file, content: string) -> (),
}

Extensions