File size: 240 Bytes
fc93158
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { loadConfig, writeConfigFile } from "../../config/config.js";
import type { PluginRuntime } from "./types.js";

export function createRuntimeConfig(): PluginRuntime["config"] {
  return {
    loadConfig,
    writeConfigFile,
  };
}