/*! * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project. */ export declare const EMPTY_ARRAY: any[]; export declare const EMPTY_OBJECT: any; /** * A utility function to cast the default empty array into the correct type; * @returns an empty array */ export declare function emptyArray(): T[]; /** * A utility function to cast the default empty object to the correct type * @returns an empty object */ export declare function emptyObject(): NonNullable;