Files
spark/ts/spark.classes.config.ts
T

15 lines
394 B
TypeScript
Raw Normal View History

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