/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { MagTimeZone, MagZoneDateTime } from 'ng-stalk/core/types'; import { BehaviorSubject } from 'rxjs'; export declare type DisplayType = 'rfc3339' | 'date-time-zone' | 'date-time' | 'date-time-with-second' | 'year-month-day' | 'month-day' | 'time-with-second' | 'time'; export interface DateTimeTable { value: MagZoneDateTime; full: BehaviorSubject; rfc3339: string; date: string; time: string; timezone: MagTimeZone; displayType: DisplayType; displayText: BehaviorSubject; }