6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
16 lines
579 B
TypeScript
16 lines
579 B
TypeScript
import PreviewBase from "../PreviewBase";
|
|
import Version from "../../base/Version";
|
|
import { FleetListInstance } from "./deployed_devices/fleet";
|
|
export default class DeployedDevices extends Version {
|
|
/**
|
|
* Initialize the DeployedDevices version of Preview
|
|
*
|
|
* @param domain - The Twilio (Twilio.Preview) domain
|
|
*/
|
|
constructor(domain: PreviewBase);
|
|
/** fleets - { Twilio.Preview.DeployedDevices.FleetListInstance } resource */
|
|
protected _fleets?: FleetListInstance;
|
|
/** Getter for fleets resource */
|
|
get fleets(): FleetListInstance;
|
|
}
|