@dishuostec/llrt-types
Version:
Type definitions for LLRT, Low Latency Runtime
15 lines (12 loc) • 364 B
TypeScript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
export {};
/**
* Minimal Intl augmentation for timezone support.
* Keep this file additive so it can merge with TypeScript's built-in Intl types.
*/
declare global {
namespace Intl {
function supportedValuesOf(key: "timeZone"): string[];
}
}