mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-07 16:30:12 +08:00
Vendored
+167
-109
@@ -91,8 +91,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: T, index: number, array: T[]) => boolean): boolean;
|
||||
some(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: T, index: number, array: T[]) => void ): void;
|
||||
forEach(callbackfn: (value: T, index: number, array: T[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: T, index: number, array: T[]) => void): void;
|
||||
forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: T, index: number, array: T[]) => any): any[];
|
||||
map(callbackfn: (value: T, index: number, array: T[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: T, index: number, array: T[]) => boolean): T[];
|
||||
@@ -138,8 +138,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: T, index: number, array: T[]) => boolean): boolean;
|
||||
some(callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: T, index: number, array: T[]) => void ): void;
|
||||
forEach(callbackfn: (value: T, index: number, array: T[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: T, index: number, array: T[]) => void): void;
|
||||
forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: T, index: number, array: T[]) => any): any[];
|
||||
map(callbackfn: (value: T, index: number, array: T[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: T, index: number, array: T[]) => boolean): T[];
|
||||
@@ -238,8 +238,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Foundation.IWwwFormUrlDecoderEntry, index: number, array: Windows.Foundation.IWwwFormUrlDecoderEntry[]) => boolean): Windows.Foundation.IWwwFormUrlDecoderEntry[];
|
||||
@@ -516,7 +516,7 @@ declare module Windows {
|
||||
then<U>(success?: () => IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): IPromise<U>;
|
||||
then<U>(success?: () => U, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void): IPromise<U>;
|
||||
then<U>(success?: () => U, error?: (error: any) => U, progress?: (progress: any) => void): IPromise<U>;
|
||||
done? <U>(success?: () => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
done?<U>(success?: () => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
|
||||
cancel(): void;
|
||||
|
||||
@@ -1802,31 +1802,31 @@ declare module Windows {
|
||||
}
|
||||
export interface IPackage {
|
||||
dependencies: Windows.Foundation.Collections.IVectorView<Windows.ApplicationModel.Package>;
|
||||
description: string;
|
||||
displayName: string;
|
||||
description: string;
|
||||
displayName: string;
|
||||
id: Windows.ApplicationModel.PackageId;
|
||||
installedLocation: Windows.Storage.StorageFolder;
|
||||
isBundle: boolean;
|
||||
isDevelopmentMode: boolean;
|
||||
isBundle: boolean;
|
||||
isDevelopmentMode: boolean;
|
||||
isFramework: boolean;
|
||||
isResourcePackage: boolean;
|
||||
logo: Windows.Foundation.Uri;
|
||||
publisherDisplayName: string;
|
||||
isResourcePackage: boolean;
|
||||
logo: Windows.Foundation.Uri;
|
||||
publisherDisplayName: string;
|
||||
}
|
||||
export class Package implements Windows.ApplicationModel.IPackage {
|
||||
static current: Windows.ApplicationModel.Package;
|
||||
static current: Windows.ApplicationModel.Package;
|
||||
|
||||
dependencies: Windows.Foundation.Collections.IVectorView<Windows.ApplicationModel.Package>;
|
||||
description: string;
|
||||
displayName: string;
|
||||
description: string;
|
||||
displayName: string;
|
||||
id: Windows.ApplicationModel.PackageId;
|
||||
installedLocation: Windows.Storage.StorageFolder;
|
||||
isBundle: boolean;
|
||||
isDevelopmentMode: boolean;
|
||||
isBundle: boolean;
|
||||
isDevelopmentMode: boolean;
|
||||
isFramework: boolean;
|
||||
isResourcePackage: boolean;
|
||||
logo: Windows.Foundation.Uri;
|
||||
publisherDisplayName: string;
|
||||
isResourcePackage: boolean;
|
||||
logo: Windows.Foundation.Uri;
|
||||
publisherDisplayName: string;
|
||||
}
|
||||
export interface IPackageStatics {
|
||||
current: Windows.ApplicationModel.Package;
|
||||
@@ -2033,8 +2033,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceQualifier, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceQualifier[]) => boolean): Windows.ApplicationModel.Resources.Core.ResourceQualifier[];
|
||||
@@ -2072,8 +2072,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.ApplicationModel.Resources.Core.ResourceCandidate, index: number, array: Windows.ApplicationModel.Resources.Core.ResourceCandidate[]) => boolean): Windows.ApplicationModel.Resources.Core.ResourceCandidate[];
|
||||
@@ -2111,8 +2111,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: string, index: number, array: string[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: string, index: number, array: string[]) => boolean): boolean;
|
||||
some(callbackfn: (value: string, index: number, array: string[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: string, index: number, array: string[]) => void ): void;
|
||||
forEach(callbackfn: (value: string, index: number, array: string[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: string, index: number, array: string[]) => void): void;
|
||||
forEach(callbackfn: (value: string, index: number, array: string[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: string, index: number, array: string[]) => any): any[];
|
||||
map(callbackfn: (value: string, index: number, array: string[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: string, index: number, array: string[]) => boolean): string[];
|
||||
@@ -2364,8 +2364,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Data.Json.IJsonValue, index: number, array: Windows.Data.Json.IJsonValue[]) => boolean): Windows.Data.Json.IJsonValue[];
|
||||
@@ -2510,8 +2510,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => boolean): Windows.Data.Xml.Dom.IXmlNode[];
|
||||
@@ -2556,8 +2556,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Data.Xml.Dom.IXmlNode, index: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => boolean): Windows.Data.Xml.Dom.IXmlNode[];
|
||||
@@ -2566,7 +2566,7 @@ declare module Windows {
|
||||
reduce(callbackfn: (previousValue: any, currentValue: any, currentIndex: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => any, initialValue: any): any;
|
||||
reduceRight(callbackfn: (previousValue: any, currentValue: any, currentIndex: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => any): any;
|
||||
reduceRight(callbackfn: (previousValue: any, currentValue: any, currentIndex: number, array: Windows.Data.Xml.Dom.IXmlNode[]) => any, initialValue: any): any;
|
||||
}
|
||||
}
|
||||
export class XmlDocument implements Windows.Data.Xml.Dom.IXmlDocument, Windows.Data.Xml.Dom.IXmlNode, Windows.Data.Xml.Dom.IXmlNodeSelector, Windows.Data.Xml.Dom.IXmlNodeSerializer, Windows.Data.Xml.Dom.IXmlDocumentIO {
|
||||
doctype: Windows.Data.Xml.Dom.XmlDocumentType;
|
||||
documentElement: Windows.Data.Xml.Dom.XmlElement;
|
||||
@@ -3248,11 +3248,11 @@ declare module Windows {
|
||||
getResults(): void;
|
||||
cancel(): void;
|
||||
close(): void;
|
||||
then<U>(success?: (value: any) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: any) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
|
||||
then<U>(success?: (value: any) => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: any) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<any>;
|
||||
getResults(): any;
|
||||
@@ -3266,11 +3266,11 @@ declare module Windows {
|
||||
getResults(): void;
|
||||
cancel(): void;
|
||||
close(): void;
|
||||
then<U>(success?: (value: any) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: any) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
|
||||
then<U>(success?: (value: any) => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: any) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: any) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<any>;
|
||||
getResults(): any;
|
||||
@@ -3284,11 +3284,11 @@ declare module Windows {
|
||||
getResults(): Windows.Devices.Sms.ISmsMessage;
|
||||
cancel(): void;
|
||||
close(): void;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: Windows.Devices.Sms.ISmsMessage) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<Windows.Devices.Sms.ISmsMessage>;
|
||||
getResults(): Windows.Devices.Sms.ISmsMessage;
|
||||
@@ -3303,11 +3303,11 @@ declare module Windows {
|
||||
getResults(): Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>;
|
||||
cancel(): void;
|
||||
close(): void;
|
||||
then<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
|
||||
then<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
progress: Windows.Foundation.AsyncOperationProgressHandler<Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>, number>;
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<Windows.Foundation.Collections.IVectorView<Windows.Devices.Sms.ISmsMessage>>;
|
||||
@@ -3362,7 +3362,7 @@ declare module Windows {
|
||||
then<U>(success?: () => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: () => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: () => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: () => any, error?: (error: any) => any, progress?: (progress: any) => void): void ;
|
||||
done<U>(success?: () => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<any>;
|
||||
getResults(): any;
|
||||
@@ -3403,11 +3403,11 @@ declare module Windows {
|
||||
getResults(): Windows.Devices.Sms.SmsDevice;
|
||||
cancel(): void;
|
||||
close(): void;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: Windows.Devices.Sms.SmsDevice) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<Windows.Devices.Sms.SmsDevice>;
|
||||
getResults(): Windows.Devices.Sms.SmsDevice;
|
||||
@@ -3527,8 +3527,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Devices.Enumeration.DeviceInformation, index: number, array: Windows.Devices.Enumeration.DeviceInformation[]) => boolean): Windows.Devices.Enumeration.DeviceInformation[];
|
||||
@@ -3654,8 +3654,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Devices.Enumeration.Pnp.PnpObject, index: number, array: Windows.Devices.Enumeration.Pnp.PnpObject[]) => boolean): Windows.Devices.Enumeration.Pnp.PnpObject[];
|
||||
@@ -4867,8 +4867,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Globalization.Collation.CharacterGrouping, index: number, array: Windows.Globalization.Collation.CharacterGrouping[]) => boolean): Windows.Globalization.Collation.CharacterGrouping[];
|
||||
@@ -8428,11 +8428,11 @@ declare module Windows {
|
||||
getResults(): Windows.Security.Authentication.OnlineId.UserIdentity;
|
||||
cancel(): void;
|
||||
close(): void;
|
||||
then<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
|
||||
then<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: Windows.Security.Authentication.OnlineId.UserIdentity) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<Windows.Security.Authentication.OnlineId.UserIdentity>;
|
||||
getResults(): Windows.Security.Authentication.OnlineId.UserIdentity;
|
||||
@@ -9287,11 +9287,11 @@ declare module Windows {
|
||||
getResults(): number;
|
||||
cancel(): void;
|
||||
close(): void;
|
||||
then<U>(success?: (value: number) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: number) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
|
||||
then<U>(success?: (value: number) => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: number) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<number>;
|
||||
getResults(): number;
|
||||
@@ -9367,11 +9367,11 @@ declare module Windows {
|
||||
getResults(): number;
|
||||
cancel(): void;
|
||||
close(): void;
|
||||
then<U>(success?: (value: number) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: number) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
|
||||
then<U>(success?: (value: number) => U, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => Windows.Foundation.IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => U, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
then<U>(success?: (value: number) => Windows.Foundation.IPromise<U>, error?: (error: any) => Windows.Foundation.IPromise<U>, progress?: (progress: any) => void): Windows.Foundation.IPromise<U>;
|
||||
done<U>(success?: (value: number) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
operation: {
|
||||
completed: Windows.Foundation.AsyncOperationCompletedHandler<number>;
|
||||
getResults(): number;
|
||||
@@ -10613,8 +10613,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Storage.Search.SortEntry, index: number, array: Windows.Storage.Search.SortEntry[]) => boolean): Windows.Storage.Search.SortEntry[];
|
||||
@@ -10665,8 +10665,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Storage.AccessCache.AccessListEntry, index: number, array: Windows.Storage.AccessCache.AccessListEntry[]) => boolean): Windows.Storage.AccessCache.AccessListEntry[];
|
||||
@@ -10943,8 +10943,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => boolean): boolean;
|
||||
some(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => void ): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => void): void;
|
||||
forEach(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => any): any[];
|
||||
map(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: Windows.Storage.StorageFile, index: number, array: Windows.Storage.StorageFile[]) => boolean): Windows.Storage.StorageFile[];
|
||||
@@ -11000,8 +11000,8 @@ declare module Windows {
|
||||
every(callbackfn: (value: string, index: number, array: string[]) => boolean, thisArg: any): boolean;
|
||||
some(callbackfn: (value: string, index: number, array: string[]) => boolean): boolean;
|
||||
some(callbackfn: (value: string, index: number, array: string[]) => boolean, thisArg: any): boolean;
|
||||
forEach(callbackfn: (value: string, index: number, array: string[]) => void ): void;
|
||||
forEach(callbackfn: (value: string, index: number, array: string[]) => void , thisArg: any): void;
|
||||
forEach(callbackfn: (value: string, index: number, array: string[]) => void): void;
|
||||
forEach(callbackfn: (value: string, index: number, array: string[]) => void, thisArg: any): void;
|
||||
map(callbackfn: (value: string, index: number, array: string[]) => any): any[];
|
||||
map(callbackfn: (value: string, index: number, array: string[]) => any, thisArg: any): any[];
|
||||
filter(callbackfn: (value: string, index: number, array: string[]) => boolean): string[];
|
||||
@@ -11605,12 +11605,12 @@ declare module Windows {
|
||||
/**
|
||||
* Gets the window (app view) for the current app.
|
||||
**/
|
||||
static getForCurrentView(): ApplicationView;
|
||||
static getForCurrentView(): ApplicationView;
|
||||
|
||||
/**
|
||||
* Attempts to unsnap a previously snapped app. This call will only succeed when the app is running in the foreground.
|
||||
**/
|
||||
static tryUnsnap(): boolean;
|
||||
static tryUnsnap(): boolean;
|
||||
|
||||
/**
|
||||
* Gets the state of the current app view.
|
||||
@@ -11620,55 +11620,60 @@ declare module Windows {
|
||||
/**
|
||||
* Indicates whether the app terminates when the last window is closed.
|
||||
**/
|
||||
static terminateAppOnFinalViewClose: boolean;
|
||||
static terminateAppOnFinalViewClose: boolean;
|
||||
|
||||
/**
|
||||
* Gets the current orientation of the window (app view) with respect to the display.
|
||||
**/
|
||||
orientation: ApplicationViewOrientation;
|
||||
orientation: ApplicationViewOrientation;
|
||||
|
||||
/**
|
||||
* Gets or sets the displayed title of the window.
|
||||
**/
|
||||
title: string;
|
||||
title: string;
|
||||
|
||||
/**
|
||||
* Gets or sets whether screen capture is enabled for the window (app view).
|
||||
**/
|
||||
isScreenCaptureEnabled: boolean;
|
||||
isScreenCaptureEnabled: boolean;
|
||||
|
||||
/**
|
||||
* Gets whether the window (app view) is on the Windows lock screen.
|
||||
**/
|
||||
isOnLockScreen: boolean;
|
||||
isOnLockScreen: boolean;
|
||||
|
||||
/**
|
||||
* Gets whether the window(app view) is full screen or not.
|
||||
**/
|
||||
isFullScreen: boolean;
|
||||
isFullScreen: boolean;
|
||||
|
||||
/**
|
||||
* Gets the current ID of the window (app view) .
|
||||
**/
|
||||
id: number;
|
||||
id: number;
|
||||
|
||||
/**
|
||||
* Gets whether the current window (app view) is adjacent to the right edge of the screen.
|
||||
**/
|
||||
adjacentToRightDisplayEdge: boolean;
|
||||
adjacentToRightDisplayEdge: boolean;
|
||||
|
||||
/**
|
||||
* Gets whether the current window (app view) is adjacent to the left edge of the screen.
|
||||
**/
|
||||
adjacentToLeftDisplayEdge: number;
|
||||
}
|
||||
adjacentToLeftDisplayEdge: number;
|
||||
|
||||
/**
|
||||
* Gets the title bar of the app.
|
||||
**/
|
||||
titleBar: ApplicationViewTitleBar;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines the set of display orientation modes for a window (app view).
|
||||
**/
|
||||
export enum ApplicationViewOrientation {
|
||||
landscape,
|
||||
portrait
|
||||
export enum ApplicationViewOrientation {
|
||||
landscape,
|
||||
portrait
|
||||
}
|
||||
export interface IInputPaneVisibilityEventArgs {
|
||||
ensuredFocusedElementInView: boolean;
|
||||
@@ -14786,10 +14791,10 @@ declare module Windows {
|
||||
}
|
||||
declare module Windows.Foundation {
|
||||
export interface IPromise<T> {
|
||||
then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void ): IPromise<U>;
|
||||
then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): IPromise<U>;
|
||||
then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void ): IPromise<U>;
|
||||
then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void ): IPromise<U>;
|
||||
then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void): IPromise<U>;
|
||||
then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void): IPromise<U>;
|
||||
then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void): IPromise<U>;
|
||||
then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void): IPromise<U>;
|
||||
done<U>(success?: (value: T) => any, error?: (error: any) => any, progress?: (progress: any) => void): void;
|
||||
|
||||
cancel(): void;
|
||||
@@ -14799,4 +14804,57 @@ declare module Windows.Foundation {
|
||||
dispatchEvent?(type: string, details: any): boolean;
|
||||
removeEventListener?(eventType: string, listener: Function, capture?: boolean): void;
|
||||
}
|
||||
}
|
||||
|
||||
declare module Windows.UI.ViewManagement {
|
||||
export class ApplicationViewTitleBar {
|
||||
/**
|
||||
* Gets or sets the color of the title bar background.
|
||||
**/
|
||||
backgroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the background color of the title bar buttons.
|
||||
**/
|
||||
buttonBackgroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the foreground color of the title bar buttons.
|
||||
**/
|
||||
buttonForegroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the background color of a title bar button when the pointer is over it.
|
||||
**/
|
||||
buttonHoverBackgroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the foreground color of a title bar button when the pointer is over it.
|
||||
**/
|
||||
buttonHoverForegroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the background color of a title bar button when it's inactive.
|
||||
**/
|
||||
buttonInactiveBackgroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the foreground color of a title bar button when it's inactive.
|
||||
**/
|
||||
buttonInactiveForegroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the background color of a title bar button when it's pressed.
|
||||
**/
|
||||
buttonPressedBackgroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the foreground color of a title bar button when it's pressed.
|
||||
**/
|
||||
buttonPressedForegroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the color of the title bar foreground.
|
||||
**/
|
||||
foregroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the color of the title bar background when it's inactive.
|
||||
**/
|
||||
inactiveBackgroundColor: Color;
|
||||
/**
|
||||
* Gets or sets the color of the title bar foreground when it's inactive.
|
||||
**/
|
||||
inactiveForegroundColor: Color;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user