14 lines
250 B
TypeScript
14 lines
250 B
TypeScript
// Original file: null
|
|
|
|
import type { Long } from '@grpc/proto-loader';
|
|
|
|
export interface Timestamp {
|
|
'seconds'?: (number | string | Long);
|
|
'nanos'?: (number);
|
|
}
|
|
|
|
export interface Timestamp__Output {
|
|
'seconds': (string);
|
|
'nanos': (number);
|
|
}
|