@grafana/ui
Version:
Grafana Components Library
11 lines (10 loc) • 368 B
TypeScript
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 {};