minor changes

This commit is contained in:
2024-12-03 09:56:02 +01:00
parent f0c62cc586
commit 71612b1a9c
18 changed files with 26 additions and 123 deletions

View File

@ -1,6 +1,6 @@
import {Component, EventEmitter, Output} from "@angular/core";
import {FormsModule, ReactiveFormsModule} from "@angular/forms";
import {Lang} from "../idek/lang";
import {Lang} from "./lang";
@Component({

5
src/app/currency/lang.ts Normal file
View File

@ -0,0 +1,5 @@
export interface Lang {
code: string;
name: string;
currency: string;
}