Setup basic portfolio interface

This commit is contained in:
2023-10-06 16:21:31 -04:00
parent 76cfbc8090
commit b42d974c56
5 changed files with 44 additions and 25 deletions

View File

@@ -1,3 +1,5 @@
import { Portfolio } from "./portfolio";
export interface Account {
fetchPortfolio: () => Portfolio;
}
}