spark/ts/spark.classes.localconfig.ts

16 lines
401 B
TypeScript
Raw Normal View History

2024-05-08 20:49:10 +02:00
import * as plugins from './spark.plugins.js';
import { Spark } from './index.js';
export class SparkLocalConfig {
public sparkRef: Spark;
private kvStore: plugins.npmextra.KeyValueStore;
constructor(sparkRefArg: Spark) {
this.sparkRef = sparkRefArg;
2024-05-08 21:31:31 +02:00
this.kvStore = new plugins.npmextra.KeyValueStore({
typeArg: 'userHomeDir',
identityArg: 'servezone_spark',
2024-05-08 21:31:31 +02:00
});
2024-05-08 20:49:10 +02:00
}
}