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