Bind dashboard front-end to component

This commit is contained in:
2020-02-22 22:38:28 +01:00
parent 6ca0a99e78
commit ada58864e0
14 changed files with 136 additions and 38 deletions
+6
View File
@@ -0,0 +1,6 @@
export default interface IRepository {
Create(t: any): any;
Read(t: any): any;
Update(t: any): any;
Delete(t: any): any;
}