sdk/ts/interfaces/projectsettings.ts

7 lines
179 B
TypeScript
Raw Normal View History

2020-09-26 11:57:26 +00:00
export interface IProjectSettings {
registryId: string;
registryUrl: string;
registryToken: string;
packageName: string;
environmentVariables: {[key: string]: string};
}