12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
import { IBaseConfig } from "./IBaseConfig";
|
|
|
|
export interface ICoreConfig extends IBaseConfig
|
|
{
|
|
kind: "aki-core"
|
|
akiVersion: string
|
|
projectName: string
|
|
compatibleTarkovVersion: string
|
|
serverName: string
|
|
profileSaveIntervalSeconds: number
|
|
commit: string
|
|
} |