7 lines
379 B
TypeScript
7 lines
379 B
TypeScript
import type { ISchedulingPolicyRef } from '../../../interfaces/generated/aws-batch-interfaces.generated';
|
|
import type { ISchedulingPolicy } from '../scheduling-policy';
|
|
/**
|
|
* Converts an ISchedulingPolicyRef to ISchedulingPolicy, validating that it implements the full interface.
|
|
*/
|
|
export declare function toISchedulingPolicy(policy: ISchedulingPolicyRef): ISchedulingPolicy;
|