sdk/ts/interfaces/projectsettings.ts

11 lines
231 B
TypeScript
Raw Normal View History

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