Interface that a kassette configuration file should export.

interface IConfigurationFile {
    getConfiguration(arg: GetConfigurationProps): ConfigurationSpec | Promise<ConfigurationSpec>;
}

Methods