UNPKG

@emmveqz/grpc-node-web

Version:

Exactly as @grpc/grpc-js but with web browser CORS capability

9 lines (8 loc) 338 B
export interface Duration { seconds: number; nanos: number; } export declare function msToDuration(millis: number): Duration; export declare function durationToMs(duration: Duration): number; export declare function isDuration(value: any): value is Duration; export declare function parseDuration(value: string): Duration | null;