import { IServerVariable } from "./i-server-variable";
export interface IServerVariables {
    [name: string]: IServerVariable;
}
