1 | import { Expression } from "../params";
|
2 |
|
3 |
|
4 |
|
5 |
|
6 | export type Duration = string;
|
7 |
|
8 | export declare function durationFromSeconds(s: number): Duration;
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | export declare function copyIfPresent<Src, Dest>(dest: Dest, src: Src, ...fields: Array<keyof Src & keyof Dest>): void;
|
15 | export declare function convertIfPresent<Src, Dest>(dest: Dest, src: Src, destField: keyof Dest, srcField: keyof Src, converter?: (from: any) => any): void;
|
16 | export declare function serviceAccountFromShorthand(serviceAccount: string | Expression<string>): string | Expression<string> | null;
|
17 | export declare function convertInvoker(invoker: string | string[]): string[];
|