apiNode.ts 142 B

123456789
  1. import { readFileSync } from 'node:fs';
  2. const nodeApi = {
  3. readFileSync,
  4. };
  5. export type NodeApi = typeof nodeApi;
  6. export default nodeApi;