@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
11 lines (10 loc) • 350 B
TypeScript
type DateFormatArgs = {
date?: string;
options?: Intl.DateTimeFormatOptions;
};
export declare const dateFormat: ({ date, options }: DateFormatArgs) => string;
export declare const timestampFormat: ({ timestamp, }: {
timestamp: number;
}) => string;
export declare const friendlyTimestampFormat: (timestamp: number) => string;
export {};