blob: 5a19a1b84877b05191a1fcb54c231cb3f4579ddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import Currency from "./currency/currency";
interface Budget {
quantity: Currency;
period: number;
}
function newBudgetFromDto(dto: unknown) {
return dto as Budget;
}
export { type Budget, newBudgetFromDto };
|