@arifwidianto/rpc-agent
Version:
RPC Agent for both client and server, extends more methods easily
16 lines (15 loc) • 353 B
TypeScript
export interface DateParseArguments {
date: Date | string | number | undefined;
}
interface DateTimeResponse {
timestamp: string;
unix: number;
utc: string;
local: string;
timezone: string;
}
export interface DateNowResponse extends DateTimeResponse {
}
export interface DateParseResponse extends DateTimeResponse {
}
export {};