function HexToDecimal(hex: string): number {
    return parseInt(hex, 16);
}

export default HexToDecimal;
