# Utf16PathBuffer

`import { Utf16PathBuffer } from "destack:fs/binding";`

UTF-16-oriented host path output buffer.

```ds title="Utf16PathBuffer"
export struct Utf16PathBuffer {
    kind: "utf16";
    units: PathUtf16Buffer;
}
```

[language/library/src/fs/binding/path.ds:41:46](https://github.com/destack-sh/destack/blob/main/language/library/src/fs/binding/path.ds#L41-L46)

## Members

### `kind: "utf16"`

Path representation tag.

### `units: PathUtf16Buffer`

UTF-16 unit buffer.
