// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * Axis used by mirror operations. */ export class SdfAxis { /** @internal */ static fromValue(value: SdfAxis | string): SdfAxis; get value(): string; /** @internal */ get ffiValue(): number; static X : SdfAxis; static Y : SdfAxis; static Z : SdfAxis; constructor(value: SdfAxis | string ); }