7 lines
242 B
TypeScript
7 lines
242 B
TypeScript
import { InstanceType } from '../../../aws-ec2';
|
|
/**
|
|
* This function check if the instanceType is GPU instance.
|
|
* @param instanceType The EC2 instance type
|
|
*/
|
|
export declare function isGpuInstanceType(instanceType: InstanceType): boolean;
|