/*! * Copyright (C) 2018-2019 Silas B. Domingos * This source code is licensed under the MIT License as described in the file LICENSE. */ /** * Application settings interface. */ export interface Settings { /** * Path separator. */ separator: string; /** * Path variable pattern. */ variable: RegExp; }