diff --git a/winrt/winrt.d.ts b/winrt/winrt.d.ts index a6829956eb..91c0a28013 100644 --- a/winrt/winrt.d.ts +++ b/winrt/winrt.d.ts @@ -10171,6 +10171,7 @@ declare module Windows { getFilesAsync(): Windows.Foundation.IAsyncOperation>; getFoldersAsync(): Windows.Foundation.IAsyncOperation>; getItemsAsync(): Windows.Foundation.IAsyncOperation>; + getItemsAsync(startIndex: number, maxItemsToRetrieve: number): Windows.Foundation.IAsyncOperation>; } export interface IStorageFile extends Windows.Storage.IStorageItem, Windows.Storage.Streams.IRandomAccessStreamReference, Windows.Storage.Streams.IInputStreamReference { contentType: string; @@ -14736,7 +14737,7 @@ declare module Windows.Foundation { then(success?: (value: T) => IPromise, error?: (error: any) => U, progress?: (progress: any) => void ): IPromise; then(success?: (value: T) => U, error?: (error: any) => IPromise, progress?: (progress: any) => void ): IPromise; then(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void ): IPromise; - done?(success?: (value: T) => any, error?: (error: any) => any, progress?: (progress: any) => void): void; + done(success?: (value: T) => any, error?: (error: any) => any, progress?: (progress: any) => void): void; cancel(): void;