fix(core): update

This commit is contained in:
Philipp Kunz 2020-09-26 12:31:08 +00:00
parent ee99ddd23c
commit a9cf2bb4c3

View File

@ -1,7 +1,10 @@
export interface IProjectSettings {
registryId: string;
registryUrl: string;
registryToken: string;
slug: string;
packageName: string;
environmentVariables: {[key: string]: string};
}
environmentVariables: { [key: string]: string };
registryId: string;
registryDescriptor: {
registryUrl: string;
registryToken: string;
};
}