On this page
Deno.SeekMode
A enum which defines the seek mode for IO related APIs that support seeking.
enum SeekMode {
Start = 0,
Current = 1,
End = 2,
}
Members
SeekMode.Current = 1
SeekMode.End = 2
SeekMode.Start = 0
© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.SeekMode