@ansible/ansible-ui-framework 0.0.685 → 0.0.687

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,8 +2,9 @@
2
2
  export declare function DateCell(props: {
3
3
  value: number | string;
4
4
  }): JSX.Element;
5
- export declare function SinceCell(props: {
5
+ export declare function DateTimeCell(props: {
6
6
  value: string | number | undefined | null;
7
7
  author?: string;
8
+ format?: 'since' | 'date-time';
8
9
  onClick?: () => void;
9
10
  }): JSX.Element;