UNPKG

@grafana/ui

Version:
11 lines (10 loc) 368 B
import React, { PropsWithChildren } from 'react'; import { TimeZone } from '@grafana/data'; interface Props { timestamp: number; timeZone: TimeZone | undefined; className?: string; } export declare const TimeZoneOffset: React.FC<PropsWithChildren<Props>>; export declare const formatUtcOffset: (timestamp: number, timeZone: TimeZone) => string; export {};