Environment Variables: Dashboard along with CRUD Operations on variables.

This commit is contained in:
vinodkiran
2023-12-10 22:38:18 +05:30
parent bac91eed00
commit 1d1bd4f556
15 changed files with 742 additions and 6 deletions
+9
View File
@@ -68,6 +68,15 @@ export interface ICredential {
createdDate: Date
}
export interface IVariable {
id: string
name: string
value: string
type: string
updatedDate: Date
createdDate: Date
}
export interface IComponentNodes {
[key: string]: INode
}