MCPcopy Create free account
hub / github.com/cn-docs/vueuse / FileSystemWritableFileStream

Interface FileSystemWritableFileStream

packages/core/useFileSystemAccess/index.ts:46–59  ·  view source on GitHub ↗

* @see https://developer.mozilla.org/en-US/docs/Web/API/FileSystemWritableFileStream

Source from the content-addressed store, hash-verified

44 * @see https://developer.mozilla.org/en-US/docs/Web/API/FileSystemWritableFileStream
45 */
46interface FileSystemWritableFileStream extends WritableStream {
47 /**
48 * @see https://developer.mozilla.org/en-US/docs/Web/API/FileSystemWritableFileStream/write
49 */
50 write: FileSystemWritableFileStreamWrite
51 /**
52 * @see https://developer.mozilla.org/en-US/docs/Web/API/FileSystemWritableFileStream/seek
53 */
54 seek: (position: number) => Promise<void>
55 /**
56 * @see https://developer.mozilla.org/en-US/docs/Web/API/FileSystemWritableFileStream/truncate
57 */
58 truncate: (size: number) => Promise<void>
59}
60
61/**
62 * FileStream.write

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected