Files
openclaw/src/infra/control-ui-assets.fs.runtime.ts
2026-04-03 21:19:14 +01:00

7 lines
231 B
TypeScript

import fs from "node:fs";
export const existsSync = fs.existsSync.bind(fs);
export const readFileSync = fs.readFileSync.bind(fs);
export const statSync = fs.statSync.bind(fs);
export const realpathSync = fs.realpathSync.bind(fs);