fix(core): update

This commit is contained in:
Philipp Kunz 2020-09-26 11:57:26 +00:00
parent 1c678ced10
commit b99a0548a2
3 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,5 @@
export * from './sdk.classes.agenvironment';
export * from './sdk.classes.aghandler';
export * from './sdk.classes.authinfo';
export * from './interfaces';

View File

@ -1 +1 @@
export {};
export * from './projectsettings';

View File

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