mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2026-01-25 07:41:51 +00:00
6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
import {Price} from './price.interface';
|
|
|
|
export interface Prices {
|
|
[key: number]: Price;
|
|
}
|