mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
import {Price} from './price.interface';
|
|
|
|
export interface Prices {
|
|
[key: number]: Price;
|
|
}
|