From 34a07ba7a64d4a51426be109728dadd9f9af816c Mon Sep 17 00:00:00 2001 From: Diego Vilar Date: Wed, 24 Oct 2012 20:29:17 -0300 Subject: [PATCH 1/6] Definitions for AngularJS 1.0.2 modules ng, AUTO, ngCookies, ngMock, ngMockE2E, ngResource and ngSanitize --- Definitions/angular-1.0.2.d.ts | 637 ++++++++++++++++++++++++ Definitions/angular-cookies-1.0.2.d.ts | 29 ++ Definitions/angular-mocks-1.0.2.d.ts | 153 ++++++ Definitions/angular-resource-1.0.2.d.ts | 65 +++ Definitions/angular-sanitize-1.0.2.d.ts | 21 + 5 files changed, 905 insertions(+) create mode 100644 Definitions/angular-1.0.2.d.ts create mode 100644 Definitions/angular-cookies-1.0.2.d.ts create mode 100644 Definitions/angular-mocks-1.0.2.d.ts create mode 100644 Definitions/angular-resource-1.0.2.d.ts create mode 100644 Definitions/angular-sanitize-1.0.2.d.ts diff --git a/Definitions/angular-1.0.2.d.ts b/Definitions/angular-1.0.2.d.ts new file mode 100644 index 000000000..db76ea472 --- /dev/null +++ b/Definitions/angular-1.0.2.d.ts @@ -0,0 +1,637 @@ +// Type definitions for Angular JS 1.0.2 +// Project: http://angularjs.org +// Definitions by: Diego Vilar +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// + +declare var angular: ng.AngularStatic; + +/////////////////////////////////////////////////////////////////////////////// +// ng module (angular.js) +/////////////////////////////////////////////////////////////////////////////// +module ng { + + // For the sake of simplicity, let's assume jQuery is always preferred + interface JQLiteOrBetter extends JQuery { } + + // All service providers extend this interface + export interface ServiceProvider { + $get(): any; + } + + /////////////////////////////////////////////////////////////////////////// + // AngularStatic + // see http://docs.angularjs.org/api + /////////////////////////////////////////////////////////////////////////// + export interface AngularStatic { + bind(context: any, fn: Function, ...args: any[]): Function; + bootstrap(element: Element, modules?: any[]): auto.InjectorService; + copy(source: any, destination?: any): any; + element: JQLiteOrBetter; + equals(value1: any, value2: any): bool; + extend(destination: any, ...sources: any[]): any; + forEach(obj: any, iterator: (value, key) => any, context?: any): any; + fromJson(json: string): any; + identity(arg?: any): any; + injector(modules?: any[]): auto.InjectorService; + isArray(value: any): bool; + isDate(value: any): bool; + isDefined(value: any): bool; + isElement(value: any): bool; + isFunction(value: any): bool; + isNumber(value: any): bool; + isObject(value: any): bool; + isString(value: any): bool; + isUndefined(value: any): bool; + lowercase(str: string): string; + module(name: string, requires?: string[], configFunction?: Function): Module; + noop(...args: any[]): void; + toJson(obj: any, pretty?: bool): string; + uppercase(str: string): string; + version: { + full: string; + major: number; + minor: number; + dot: number; + codename: string; + }; + } + + /////////////////////////////////////////////////////////////////////////// + // Module + // see http://docs.angularjs.org/api/angular.Module + /////////////////////////////////////////////////////////////////////////// + export interface Module { + config(configFn: Function): Module; + constant(name: string, value: any): Module; + controller(name: string, controllerConstructor: Function): Module; + controller(name: string, inlineAnnotadedConstructor: any[]): Module; + directive(name: string, directiveFactory: Function): Module; + factory(name: string, serviceFactoryFunction: Function): Module; + filter(name: string, filterFactoryFunction: Function): Module; + provider(name: string, serviceProviderConstructor: Function): Module; + run(initializationFunction: Function): Module; + service(name: string, serviceConstructor: Function): Module; + value(name: string, value: any): Module; + + // Properties + name: string; + requires: string[]; + } + + /////////////////////////////////////////////////////////////////////////// + // Attributes + // see http://docs.angularjs.org/api/ng.$compile.directive.Attributes + /////////////////////////////////////////////////////////////////////////// + export interface Attributes { + $set(name: string, value: any): void; + $attr: any; + } + + /////////////////////////////////////////////////////////////////////////// + // FormController + // see http://docs.angularjs.org/api/ng.directive:form.FormController + /////////////////////////////////////////////////////////////////////////// + export interface FormController { + $pristine: bool; + $dirty: bool; + $valid: bool; + $invalid: bool; + $error: any; + } + + /////////////////////////////////////////////////////////////////////////// + // NgModelController + // see http://docs.angularjs.org/api/ng.directive:ngModel.NgModelController + /////////////////////////////////////////////////////////////////////////// + export interface NgModelController { + $render(): void; + $setValidity(validationErrorKey: string, isValid: bool): void; + $setViewValue(value: string): void; + + // XXX Not sure about the types here. Documentation states it's a string, but + // I've seen it receiving other types throughout the code. + // Falling back to any for now. + $viewValue: any; + + // XXX Same as avove + $modelValue: any; + + $parsers: ModelParser[]; + $formatters: ModelFormatter[]; + $error: any; + $pristine: bool; + $dirty: bool; + $valid: bool; + $invalid: bool; + } + + export interface ModelParser { + (value: any): any; + } + + export interface ModelFormatter { + (value: any): any; + } + + /////////////////////////////////////////////////////////////////////////// + // Scope + // see http://docs.angularjs.org/api/ng.$rootScope.Scope + /////////////////////////////////////////////////////////////////////////// + export interface Scope { + // Documentation says exp is optional, but actual implementaton counts on it + $apply(exp: string): any; + $apply(exp: (scope: Scope) => any): any; + + $broadcast(name: string, ...args: any[]): AngularEvent; + $destroy(): void; + $digest(): void; + $emit(name: string, ...args: any[]): AngularEvent; + + // Documentation says exp is optional, but actual implementaton counts on it + $eval(expression: string): any; + $eval(expression: (scope: Scope) => any): any; + + // Documentation says exp is optional, but actual implementaton counts on it + $evalAsync(expression: string): void; + $evalAsync(expression: (scope: Scope) => any): void; + + // Defaults to false by the implementation checking strategy + $new(isolate?: bool): Scope; + + $on(name: string, listener: (event: AngularEvent, ...args: any[]) => any): Function; + + $watch(watchExpression: string, listener?: string, objectEquality?: bool): Function; + $watch(watchExpression: string, listener?: (newValue: any, oldValue: any, scope: Scope) => any, objectEquality?: bool): Function; + $watch(watchExpression: (scope: Scope) => any, listener?: string, objectEquality?: bool): Function; + $watch(watchExpression: (scope: Scope) => any, listener?: (newValue: any, oldValue: any, scope: Scope) => any, objectEquality?: bool): Function; + + $id: number; + } + + export interface AngularEvent { + targetScope: Scope; + currentScope: Scope; + name: string; + preventDefault: Function; + defaultPrevented: bool; + + // Available only events that were $emit-ted + stopPropagation?: Function; + } + + /////////////////////////////////////////////////////////////////////////// + // WindowService + // see http://docs.angularjs.org/api/ng.$window + /////////////////////////////////////////////////////////////////////////// + export interface WindowService extends Window {} + + /////////////////////////////////////////////////////////////////////////// + // BrowserService + // TODO undocumented, so we need to get it from the source code + /////////////////////////////////////////////////////////////////////////// + export interface BrowserService {} + + /////////////////////////////////////////////////////////////////////////// + // TimeoutService + // see http://docs.angularjs.org/api/ng.$timeout + /////////////////////////////////////////////////////////////////////////// + export interface TimeoutService { + (func: Function, delay?: number, invokeApply?: bool): Promise; + cancel(promise: Promise): bool; + } + + /////////////////////////////////////////////////////////////////////////// + // FilterService + // see http://docs.angularjs.org/api/ng.$filter + // see http://docs.angularjs.org/api/ng.$filterProvider + /////////////////////////////////////////////////////////////////////////// + export interface FilterService { + (name: string): Function; + } + + export interface FilterProvider extends ServiceProvider { + register(name: string, filterFactory: Function): ServiceProvider; + } + + /////////////////////////////////////////////////////////////////////////// + // LocaleService + // see http://docs.angularjs.org/api/ng.$locale + /////////////////////////////////////////////////////////////////////////// + export interface LocaleService { + id: string; + + // These are not documented + // Check angular's i18n files for exemples + NUMBER_FORMATS: LocaleNumberFormatDescriptor; + DATETIME_FORMATS: any; + pluralCat: (num: any) => string; + } + + export interface LocaleNumberFormatDescriptor { + DECIMAL_SEP: string; + GROUP_SEP: string; + PATTERNS: LocaleNumberPatternDescriptor[]; + CURRENCY_SYM: string; + } + + export interface LocaleNumberPatternDescriptor { + minInt: number; + minFrac: number; + maxFrac: number; + posPre: string; + posSuf: string; + negPre: string; + negSuf: string; + gSize: number; + lgSize: number; + } + + export interface LacaleDateTimeFormatDescriptor { + MONTH: string[]; + SHORTMONTH: string[]; + DAY: string[]; + SHORTDAY: string[]; + AMPMS: string[]; + medium: string; + short: string; + fullDate: string; + longDate: string; + mediumDate: string; + shortDate: string; + mediumTime: string; + shortTime: string; + } + + /////////////////////////////////////////////////////////////////////////// + // LogService + // see http://docs.angularjs.org/api/ng.$log + /////////////////////////////////////////////////////////////////////////// + export interface LogService { + error: LogCall; + info: LogCall; + log: LogCall; + warn: LogCall; + } + + // We define this as separete interface so we can reopen it later for + // the ngMock module. + interface LogCall { + (...args: any[]): void; + } + + /////////////////////////////////////////////////////////////////////////// + // ParseService + // see http://docs.angularjs.org/api/ng.$parse + /////////////////////////////////////////////////////////////////////////// + export interface ParseService { + (expression: string): CompiledExpression; + } + + export interface CompiledExpression { + (context: any, locals?: any): any; + + // If value is not provided, undefined is gonna be used since the implementation + // does not check the parameter. Let's force a value for consistency. If consumer + // whants to undefine it, pass the undefined value explicitly. + assign(context: any, value: any): any; + } + + /////////////////////////////////////////////////////////////////////////// + // LocationService + // see http://docs.angularjs.org/api/ng.$location + // see http://docs.angularjs.org/api/ng.$locationProvider + // see http://docs.angularjs.org/guide/dev_guide.services.$location + /////////////////////////////////////////////////////////////////////////// + export interface LocationService { + absUrl(): string; + hash(): string; + hash(newHash: string): LocationService; + host(): string; + path(): string; + path(newPath: string): LocationService; + port(): number; + protocol(): string; + replace(): LocationService; + search(): string; + search(parametersMap: any): LocationService; + search(parameter: string, parameterValue: any): LocationService; + url(): string; + url(url: string): LocationService; + } + + export interface LocationProvider extends ServiceProvider { + hashPrefix(): string; + hashPrefix(prefix: string): LocationProvider; + html5Mode(): bool; + + // Documentation states that parameter is string, but + // implementation tests it as boolean, which makes more sense + // since this is a toggler + html5Mode(active: bool): LocationProvider; + } + + /////////////////////////////////////////////////////////////////////////// + // DocumentService + // see http://docs.angularjs.org/api/ng.$document + /////////////////////////////////////////////////////////////////////////// + export interface DocumentService extends Document {} + + /////////////////////////////////////////////////////////////////////////// + // ExceptionHandlerService + // see http://docs.angularjs.org/api/ng.$exceptionHandler + /////////////////////////////////////////////////////////////////////////// + export interface ExceptionHandlerService { + (exception: Error, cause?: string): void; + } + + /////////////////////////////////////////////////////////////////////////// + // RootElementService + // see http://docs.angularjs.org/api/ng.$rootElement + /////////////////////////////////////////////////////////////////////////// + export interface RootElementService extends JQLiteOrBetter {} + + /////////////////////////////////////////////////////////////////////////// + // QService + // see http://docs.angularjs.org/api/ng.$q + /////////////////////////////////////////////////////////////////////////// + export interface QService { + all(promises: Promise[]): Promise; + defer(): Deferred; + reject(reason?: any): Promise; + when(value: any): Promise; + } + + export interface Promise { + then(successCallback: Function, errorCallback?: Function): Promise; + } + + export interface Deferred { + resolve(value?: any): void; + reject(reason?: string): void; + } + + /////////////////////////////////////////////////////////////////////////// + // AnchorScrollService + // see http://docs.angularjs.org/api/ng.$anchorScroll + /////////////////////////////////////////////////////////////////////////// + export interface AnchorScrollService { + (): void; + } + + export interface AnchorScrollProvider extends ServiceProvider { + disableAutoScrolling(): void; + } + + /////////////////////////////////////////////////////////////////////////// + // CacheFactoryService + // see http://docs.angularjs.org/api/ng.$cacheFactory + /////////////////////////////////////////////////////////////////////////// + export interface CacheFactoryService { + // Lets not foce the optionsMap to have the capacity member. Even though + // it's the ONLY option considered by the implementation today, a consumer + // might find it useful to associate some other options to the cache object. + //(cacheId: string, optionsMap?: { capacity: number; }): CacheObject; + (cacheId: string, optionsMap?: { capacity: number; }): CacheObject; + + // Methods bellow are not documented + info(): any; + get(cacheId: string): CacheObject; + } + + export interface CacheObject { + info(): { + id: string; + size: number; + + // Not garanteed to have, since it's a non-mandatory option + //capacity: number; + }; + put(key: string, value?: any): void; + get(key: string): any; + remove(key: string): void; + removeAll(): void; + destroy(): void; + } + + /////////////////////////////////////////////////////////////////////////// + // CompileService + // see http://docs.angularjs.org/api/ng.$compile + // see http://docs.angularjs.org/api/ng.$compileProvider + /////////////////////////////////////////////////////////////////////////// + export interface CompileService { + (element: string, transclude?: TemplateLinkingFunction, maxPriority?: number): TemplateLinkingFunction; + (element: Element, transclude?: TemplateLinkingFunction, maxPriority?: number): TemplateLinkingFunction; + (element: JQLiteOrBetter, transclude?: TemplateLinkingFunction, maxPriority?: number): TemplateLinkingFunction; + } + + export interface CompileProvider extends ServiceProvider { + directive(name: string, directiveFactory: Function): CompileProvider; + + // Undocumented, but it is there... + directive(directivesMap: any): CompileProvider; + } + + export interface TemplateLinkingFunction { + // Let's hint but not force cloneAttachFn's signature + (scope: Scope, cloneAttachFn?: (clonedElement?: JQLiteOrBetter, scope?: Scope) => any): JQLiteOrBetter; + } + + /////////////////////////////////////////////////////////////////////////// + // ControllerService + // see http://docs.angularjs.org/api/ng.$controller + // see http://docs.angularjs.org/api/ng.$controllerProvider + /////////////////////////////////////////////////////////////////////////// + export interface ControllerService { + // Although the documentation doesn't state this, locals are optional + (controllerConstructor: Function, locals?: any): any; + (controllerName: string, locals?: any): any; + } + + export interface ControlerPovider extends ServiceProvider { + register(name: string, controllerConstructor: Function): void; + register(name: string, dependencyAnnotadedConstructor: any[]): void; + } + + /////////////////////////////////////////////////////////////////////////// + // HttpService + // see http://docs.angularjs.org/api/ng.$http + /////////////////////////////////////////////////////////////////////////// + export interface HttpService { + // At least moethod and url must be provided... + (config: RequestConfig): HttpPromise; + get(url: string, RequestConfig?: any): HttpPromise; + delete(url: string, RequestConfig?: any): HttpPromise; + head(url: string, RequestConfig?: any): HttpPromise; + jsonp(url: string, RequestConfig?: any): HttpPromise; + post(url: string, data: any, RequestConfig?: any): HttpPromise; + put(url: string, data: any, RequestConfig?: any): HttpPromise; + defaults: RequestConfig; + + // For debugging, BUT it is documented as public, so... + pendingRequests: any[]; + } + + // This is just for hinting. + // Some opetions might not be available depending on the request. + // see http://docs.angularjs.org/api/ng.$http#Usage for options explanations + export interface RequestConfig { + method: string; + url: string; + params?: any; + + // XXX it has it's own structure... perhaps we should define it in the future + headers?: any; + + cache?: any; + timeout?: number; + withCredentials?: bool; + + // These accept multiple types, so let's defile them as any + data?: any; + transformRequest?: any; + transformResponse?: any; + } + + export interface HttpPromise extends Promise { + success(callback: (response: DestructuredResponse) => any): HttpPromise; + error(callback: (response: DestructuredResponse) => any): HttpPromise; + } + + export interface DestructuredResponse { + data: any; + status: number; + headers: (headerName: string) => string; + config: RequestConfig; + } + + export interface HttpProvider extends ServiceProvider { + defaults: RequestConfig; + } + + /////////////////////////////////////////////////////////////////////////// + // HttpBackendService + // see http://docs.angularjs.org/api/ng.$httpBackend + // You should never need to use this service directly. + /////////////////////////////////////////////////////////////////////////// + export interface HttpBackendService { + // XXX Perhaps define callback signature in the future + (method: string, url: string, post?: any, callback?: Function, headers?: any, timeout?: number, withCredentials?: bool); void; + } + + /////////////////////////////////////////////////////////////////////////// + // InterpolateService + // see http://docs.angularjs.org/api/ng.$interpolate + // see http://docs.angularjs.org/api/ng.$interpolateProvider + /////////////////////////////////////////////////////////////////////////// + export interface InterpolateService { + (text: string, mustHaveExpression?: bool): InterpolationFunction; + endSymbol(): string; + startSymbol(): string; + } + + export interface InterpolationFunction { + (context: any): string; + } + + export interface InterpolateProvider extends ServiceProvider { + startSymbol(): string; + startSymbol(value: string): InterpolateProvider; + endSymbol(): string; + endSymbol(value: string): InterpolateProvider; + } + + /////////////////////////////////////////////////////////////////////////// + // RouteParamsService + // see http://docs.angularjs.org/api/ng.$routeParams + /////////////////////////////////////////////////////////////////////////// + export interface RouteParamsService {} + + /////////////////////////////////////////////////////////////////////////// + // TemplateCacheService + // see http://docs.angularjs.org/api/ng.$templateCache + /////////////////////////////////////////////////////////////////////////// + export interface TemplateCacheService extends CacheObject {} + + /////////////////////////////////////////////////////////////////////////// + // RootScopeService + // see http://docs.angularjs.org/api/ng.$rootScope + /////////////////////////////////////////////////////////////////////////// + export interface RootScopeService extends Scope {} + + /////////////////////////////////////////////////////////////////////////// + // RouteService + // see http://docs.angularjs.org/api/ng.$route + // see http://docs.angularjs.org/api/ng.$routeProvider + /////////////////////////////////////////////////////////////////////////// + export interface RouteService { + reload(): void; + routes: any; + + // May not always be available. For instance, current will not be available + // to a controller that was not initialized as a result of a route maching. + current?: CurrentRoute; + } + + // see http://docs.angularjs.org/api/ng.$routeProvider#when for options explanations + export interface Route { + controller?: any; + template?: string; + templateUrl?: string; + resolve?: any; + redirectTo?: any; + reloadOnSearch?: bool; + } + + // see http://docs.angularjs.org/api/ng.$route#current + export interface CurrentRoute extends Route { + locals: { + $scope: Scope; + $template: string; + }; + } + + export interface RouteProviderProvider extends ServiceProvider { + otherwise(params: any): RouteProviderProvider; + when(path: string, route: Route): RouteProviderProvider; + } + + /////////////////////////////////////////////////////////////////////////// + // AUTO module (angular.js) + /////////////////////////////////////////////////////////////////////////// + module auto { + + /////////////////////////////////////////////////////////////////////// + // InjectorService + // see http://docs.angularjs.org/api/AUTO.$injector + /////////////////////////////////////////////////////////////////////// + export interface InjectorService { + annotate(fn: Function): string[]; + annotate(inlineAnnotadedFunction: any[]): string[]; + get(name: string): any; + instantiate(typeConstructor: Function, locals?: any): any; + invoke(func: Function, context?: any, locals?: any): any; + } + + /////////////////////////////////////////////////////////////////////// + // ProvideService + // see http://docs.angularjs.org/api/AUTO.$provide + /////////////////////////////////////////////////////////////////////// + export interface ProvideService { + // Documentation says it returns the registered instance, but actual + // implementation does not return anything. + // constant(name: string, value: any): any; + constant(name: string, value: any): void; + + decorator(name: string, decorator: Function): void; + factory(name: string, serviceFactoryFunction: Function): ng.ServiceProvider; + provider(name: string, provider: ng.ServiceProvider): ng.ServiceProvider; + provider(name: string, serviceProviderConstructor: Function): ng.ServiceProvider; + service(name: string, constructor: Function): ng.ServiceProvider; + value(name: string, value: any): ng.ServiceProvider; + } + + } + +} diff --git a/Definitions/angular-cookies-1.0.2.d.ts b/Definitions/angular-cookies-1.0.2.d.ts new file mode 100644 index 000000000..876ae5f2e --- /dev/null +++ b/Definitions/angular-cookies-1.0.2.d.ts @@ -0,0 +1,29 @@ +// Type definitions for Angular JS 1.0.2 (ngCookies module) +// Project: http://angularjs.org +// Definitions by: Diego Vilar +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// + +/////////////////////////////////////////////////////////////////////////////// +// ngCookies module (angular-cookies.js) +/////////////////////////////////////////////////////////////////////////////// +module ng.cookies { + + /////////////////////////////////////////////////////////////////////////// + // CookieService + // see http://docs.angularjs.org/api/ngCookies.$cookies + /////////////////////////////////////////////////////////////////////////// + export interface CookiesService {} + + /////////////////////////////////////////////////////////////////////////// + // CookieStoreService + // see http://docs.angularjs.org/api/ngCookies.$cookieStore + /////////////////////////////////////////////////////////////////////////// + export interface CookieStoreService { + get(key: string): any; + put(key: string, value: any): void; + remove(key: string): void; + } + +} diff --git a/Definitions/angular-mocks-1.0.2.d.ts b/Definitions/angular-mocks-1.0.2.d.ts new file mode 100644 index 000000000..cbadc152b --- /dev/null +++ b/Definitions/angular-mocks-1.0.2.d.ts @@ -0,0 +1,153 @@ +// Type definitions for Angular JS 1.0.2 (ngMock, ngMockE2E module) +// Project: http://angularjs.org +// Definitions by: Diego Vilar +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// + +/////////////////////////////////////////////////////////////////////////////// +// ngMock module (angular-mocks.js) +/////////////////////////////////////////////////////////////////////////////// +module ng { + + /////////////////////////////////////////////////////////////////////////// + // AngularStatic + // We reopen it to add the MockStatic definition + /////////////////////////////////////////////////////////////////////////// + export interface AngularStatic { + mock: MockStatic; + } + + interface MockStatic { + // see http://docs.angularjs.org/api/angular.mock.debug + debug(obj: any): string; + + // see http://docs.angularjs.org/api/angular.mock.inject + inject(...fns: Function[]): void; + + // see http://docs.angularjs.org/api/angular.mock.module + module(...modules: any[]): any; + + // see http://docs.angularjs.org/api/angular.mock.TzDate + TzDate(offset: number, timestamp: number): Date; + TzDate(offset: number, timestamp: string): Date; + } + + /////////////////////////////////////////////////////////////////////////// + // ExceptionHandlerService + // see http://docs.angularjs.org/api/ngMock.$exceptionHandler + // see http://docs.angularjs.org/api/ngMock.$exceptionHandlerProvider + /////////////////////////////////////////////////////////////////////////// + export interface ExceptionHandlerProvider extends ServiceProvider { + mode(mode: string): void; + } + + /////////////////////////////////////////////////////////////////////////// + // TimeoutService + // see http://docs.angularjs.org/api/ngMock.$timeout + // Augments the original service + /////////////////////////////////////////////////////////////////////////// + export interface TimeoutService { + flush(): void; + } + + /////////////////////////////////////////////////////////////////////////// + // LogService + // see http://docs.angularjs.org/api/ngMock.$log + // Augments the original service + /////////////////////////////////////////////////////////////////////////// + export interface LogService { + assertEmpty(): void; + reset(): void; + } + + interface LogCall { + logs: string[]; + } + + /////////////////////////////////////////////////////////////////////////// + // HttpBackendService + // see http://docs.angularjs.org/api/ngMock.$httpBackend + /////////////////////////////////////////////////////////////////////////// + export interface HttpBackendService { + flush(count: number): void; + resetExpectations(): void; + verifyNoOutstandingExpectation(): void; + verifyNoOutstandingRequest(): void; + + expect(method: string, url: string, data?: string, headers?: any): mock.RequestHandler; + expect(method: string, url: RegExp, data?: string, headers?: any): mock.RequestHandler; + expect(method: string, url: string, data?: RegExp, headers?: any): mock.RequestHandler; + expect(method: string, url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + expect(method: RegExp, url: string, data?: string, headers?: any): mock.RequestHandler; + expect(method: RegExp, url: RegExp, data?: string, headers?: any): mock.RequestHandler; + expect(method: RegExp, url: string, data?: RegExp, headers?: any): mock.RequestHandler; + expect(method: RegExp, url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + + when(method: string, url: string, data?: string, headers?: any): mock.RequestHandler; + when(method: string, url: RegExp, data?: string, headers?: any): mock.RequestHandler; + when(method: string, url: string, data?: RegExp, headers?: any): mock.RequestHandler; + when(method: string, url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + when(method: RegExp, url: string, data?: string, headers?: any): mock.RequestHandler; + when(method: RegExp, url: RegExp, data?: string, headers?: any): mock.RequestHandler; + when(method: RegExp, url: string, data?: RegExp, headers?: any): mock.RequestHandler; + when(method: RegExp, url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + + expectDELETE(url: string, headers?: any): mock.RequestHandler; + expectDELETE(url: RegExp, headers?: any): mock.RequestHandler; + expectGET(url: string, headers?: any): mock.RequestHandler; + expectGET(url: RegExp, headers?: any): mock.RequestHandler; + expectHEAD(url: string, headers?: any): mock.RequestHandler; + expectHEAD(url: RegExp, headers?: any): mock.RequestHandler; + expectJSONP(url: string): mock.RequestHandler; + expectJSONP(url: RegExp): mock.RequestHandler; + expectPATCH(url: string, data?: string, headers?: any): mock.RequestHandler; + expectPATCH(url: RegExp, data?: string, headers?: any): mock.RequestHandler; + expectPATCH(url: string, data?: RegExp, headers?: any): mock.RequestHandler; + expectPATCH(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + expectPOST(url: string, data?: string, headers?: any): mock.RequestHandler; + expectPOST(url: RegExp, data?: string, headers?: any): mock.RequestHandler; + expectPOST(url: string, data?: RegExp, headers?: any): mock.RequestHandler; + expectPOST(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + expectPUT(url: string, data?: string, headers?: any): mock.RequestHandler; + expectPUT(url: RegExp, data?: string, headers?: any): mock.RequestHandler; + expectPUT(url: string, data?: RegExp, headers?: any): mock.RequestHandler; + expectPUT(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + + whenDELETE(url: string, headers?: any): mock.RequestHandler; + whenDELETE(url: RegExp, headers?: any): mock.RequestHandler; + whenGET(url: string, headers?: any): mock.RequestHandler; + whenGET(url: RegExp, headers?: any): mock.RequestHandler; + whenHEAD(url: string, headers?: any): mock.RequestHandler; + whenHEAD(url: RegExp, headers?: any): mock.RequestHandler; + whenJSONP(url: string): mock.RequestHandler; + whenJSONP(url: RegExp): mock.RequestHandler; + whenPATCH(url: string, data?: string, headers?: any): mock.RequestHandler; + whenPATCH(url: RegExp, data?: string, headers?: any): mock.RequestHandler; + whenPATCH(url: string, data?: RegExp, headers?: any): mock.RequestHandler; + whenPATCH(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + whenPOST(url: string, data?: string, headers?: any): mock.RequestHandler; + whenPOST(url: RegExp, data?: string, headers?: any): mock.RequestHandler; + whenPOST(url: string, data?: RegExp, headers?: any): mock.RequestHandler; + whenPOST(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + whenPUT(url: string, data?: string, headers?: any): mock.RequestHandler; + whenPUT(url: RegExp, data?: string, headers?: any): mock.RequestHandler; + whenPUT(url: string, data?: RegExp, headers?: any): mock.RequestHandler; + whenPUT(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + } + + export module mock { + + // returned interface by the the mocked HttpBackendService expect/when methods + export interface RequestHandler { + respond(func: Function): void; + respond(status: number, data?: any, headers?: any): void; + respond(data: any, headers?: any): void; + + // Available wehn ngMockE2E is loaded + passThrough(): void; + } + + } + +} diff --git a/Definitions/angular-resource-1.0.2.d.ts b/Definitions/angular-resource-1.0.2.d.ts new file mode 100644 index 000000000..0ae67e1b0 --- /dev/null +++ b/Definitions/angular-resource-1.0.2.d.ts @@ -0,0 +1,65 @@ +// Type definitions for Angular JS 1.0.2 (ngResource module) +// Project: http://angularjs.org +// Definitions by: Diego Vilar +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// + +/////////////////////////////////////////////////////////////////////////////// +// ngResource module (angular-resource.js) +/////////////////////////////////////////////////////////////////////////////// +module ng.resource { + + /////////////////////////////////////////////////////////////////////////// + // ResourceService + // see http://docs.angularjs.org/api/ngResource.$resource + // Most part of the following definitions were achieved by analyzing the + // actual implementation, since the documentation doesn't seem to cover + // that deeply. + /////////////////////////////////////////////////////////////////////////// + export interface ResourceService { + (url: string, paramDefaults?: any, actionDescriptors?: any): ResourceClass; + } + + // Just a reference to facilitate describing new actions + export interface ActionDescriptor { + method: string; + isArray?: bool; + params?: any; + headers?: any; + } + + // Baseclass for everyresource with default actions. + // If you define your new actions for the resource, you will need + // to extend this interface and typecast the ResourceClass to it. + export interface ResourceClass { + get: ActionCall; + save: ActionCall; + query: ActionCall; + remove: ActionCall; + delete: ActionCall; + } + + // In case of passing the first argument as anything but a function, + // it's gonna be considered data if the action method is POST, PUT or + // PATCH (in other words, methods with body). Otherwise, it's going + // to be considered as parameters to the request. + export interface ActionCall { + (): Resource; + (dataOrParams: any): Resource; + (dataOrParams: any, success: Function): Resource; + (success: Function, error?: Function): Resource; + (params: any, data: any, success?: Function, error?: Function): Resource; + } + + export interface Resource { + $save: ActionCall; + $remove: ActionCall; + $delete: ActionCall; + + // No documented, but they are there, just as any custom action will be + $query: ActionCall; + $get: ActionCall; + } + +} diff --git a/Definitions/angular-sanitize-1.0.2.d.ts b/Definitions/angular-sanitize-1.0.2.d.ts new file mode 100644 index 000000000..105a9d5ca --- /dev/null +++ b/Definitions/angular-sanitize-1.0.2.d.ts @@ -0,0 +1,21 @@ +// Type definitions for Angular JS 1.0.2 (ngSanitize module) +// Project: http://angularjs.org +// Definitions by: Diego Vilar +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// + +/////////////////////////////////////////////////////////////////////////////// +// ngSanitize module (angular-sanitize.js) +/////////////////////////////////////////////////////////////////////////////// +module ng.sanitize { + + /////////////////////////////////////////////////////////////////////////// + // SanitizeService + // see http://docs.angularjs.org/api/ngSanitize.$sanitize + /////////////////////////////////////////////////////////////////////////// + export interface SanitizeService { + (html: string): string; + } + +} From 329e52af0f48db022bdab04a1a0b2050e0008285 Mon Sep 17 00:00:00 2001 From: Diego Vilar Date: Thu, 25 Oct 2012 01:33:16 -0300 Subject: [PATCH 2/6] Remove export keyword for all interfaces (unnecessary); Renamed interfaces to start with an I; IAngularStatic.bootstrap is now overloaded to accept Element, IJQLiteOrBetter or string as the first parameter. --- Definitions/angular-1.0.2.d.ts | 292 ++++++++++++------------ Definitions/angular-cookies-1.0.2.d.ts | 4 +- Definitions/angular-mocks-1.0.2.d.ts | 128 +++++------ Definitions/angular-resource-1.0.2.d.ts | 42 ++-- Definitions/angular-sanitize-1.0.2.d.ts | 2 +- 5 files changed, 235 insertions(+), 233 deletions(-) diff --git a/Definitions/angular-1.0.2.d.ts b/Definitions/angular-1.0.2.d.ts index db76ea472..73d491507 100644 --- a/Definitions/angular-1.0.2.d.ts +++ b/Definitions/angular-1.0.2.d.ts @@ -5,7 +5,7 @@ /// -declare var angular: ng.AngularStatic; +declare var angular: ng.IAngularStatic; /////////////////////////////////////////////////////////////////////////////// // ng module (angular.js) @@ -13,10 +13,10 @@ declare var angular: ng.AngularStatic; module ng { // For the sake of simplicity, let's assume jQuery is always preferred - interface JQLiteOrBetter extends JQuery { } + interface IJQLiteOrBetter extends JQuery { } // All service providers extend this interface - export interface ServiceProvider { + interface IServiceProvider { $get(): any; } @@ -24,17 +24,19 @@ module ng { // AngularStatic // see http://docs.angularjs.org/api /////////////////////////////////////////////////////////////////////////// - export interface AngularStatic { + interface IAngularStatic { bind(context: any, fn: Function, ...args: any[]): Function; - bootstrap(element: Element, modules?: any[]): auto.InjectorService; + bootstrap(element: string, modules?: any[]): auto.IInjectorService; + bootstrap(element: IJQLiteOrBetter, modules?: any[]): auto.IInjectorService; + bootstrap(element: Element, modules?: any[]): auto.IInjectorService; copy(source: any, destination?: any): any; - element: JQLiteOrBetter; + element: IJQLiteOrBetter; equals(value1: any, value2: any): bool; extend(destination: any, ...sources: any[]): any; forEach(obj: any, iterator: (value, key) => any, context?: any): any; fromJson(json: string): any; identity(arg?: any): any; - injector(modules?: any[]): auto.InjectorService; + injector(modules?: any[]): auto.IInjectorService; isArray(value: any): bool; isDate(value: any): bool; isDefined(value: any): bool; @@ -45,7 +47,7 @@ module ng { isString(value: any): bool; isUndefined(value: any): bool; lowercase(str: string): string; - module(name: string, requires?: string[], configFunction?: Function): Module; + module(name: string, requires?: string[], configFunction?: Function): IModule; noop(...args: any[]): void; toJson(obj: any, pretty?: bool): string; uppercase(str: string): string; @@ -62,18 +64,18 @@ module ng { // Module // see http://docs.angularjs.org/api/angular.Module /////////////////////////////////////////////////////////////////////////// - export interface Module { - config(configFn: Function): Module; - constant(name: string, value: any): Module; - controller(name: string, controllerConstructor: Function): Module; - controller(name: string, inlineAnnotadedConstructor: any[]): Module; - directive(name: string, directiveFactory: Function): Module; - factory(name: string, serviceFactoryFunction: Function): Module; - filter(name: string, filterFactoryFunction: Function): Module; - provider(name: string, serviceProviderConstructor: Function): Module; - run(initializationFunction: Function): Module; - service(name: string, serviceConstructor: Function): Module; - value(name: string, value: any): Module; + interface IModule { + config(configFn: Function): IModule; + constant(name: string, value: any): IModule; + controller(name: string, controllerConstructor: Function): IModule; + controller(name: string, inlineAnnotadedConstructor: any[]): IModule; + directive(name: string, directiveFactory: Function): IModule; + factory(name: string, serviceFactoryFunction: Function): IModule; + filter(name: string, filterFactoryFunction: Function): IModule; + provider(name: string, serviceProviderConstructor: Function): IModule; + run(initializationFunction: Function): IModule; + service(name: string, serviceConstructor: Function): IModule; + value(name: string, value: any): IModule; // Properties name: string; @@ -84,7 +86,7 @@ module ng { // Attributes // see http://docs.angularjs.org/api/ng.$compile.directive.Attributes /////////////////////////////////////////////////////////////////////////// - export interface Attributes { + interface IAttributes { $set(name: string, value: any): void; $attr: any; } @@ -93,7 +95,7 @@ module ng { // FormController // see http://docs.angularjs.org/api/ng.directive:form.FormController /////////////////////////////////////////////////////////////////////////// - export interface FormController { + interface IFormController { $pristine: bool; $dirty: bool; $valid: bool; @@ -105,7 +107,7 @@ module ng { // NgModelController // see http://docs.angularjs.org/api/ng.directive:ngModel.NgModelController /////////////////////////////////////////////////////////////////////////// - export interface NgModelController { + interface INgModelController { $render(): void; $setValidity(validationErrorKey: string, isValid: bool): void; $setViewValue(value: string): void; @@ -118,8 +120,8 @@ module ng { // XXX Same as avove $modelValue: any; - $parsers: ModelParser[]; - $formatters: ModelFormatter[]; + $parsers: IModelParser[]; + $formatters: IModelFormatter[]; $error: any; $pristine: bool; $dirty: bool; @@ -127,11 +129,11 @@ module ng { $invalid: bool; } - export interface ModelParser { + interface IModelParser { (value: any): any; } - export interface ModelFormatter { + interface IModelFormatter { (value: any): any; } @@ -139,40 +141,40 @@ module ng { // Scope // see http://docs.angularjs.org/api/ng.$rootScope.Scope /////////////////////////////////////////////////////////////////////////// - export interface Scope { + interface IScope { // Documentation says exp is optional, but actual implementaton counts on it $apply(exp: string): any; - $apply(exp: (scope: Scope) => any): any; + $apply(exp: (scope: IScope) => any): any; - $broadcast(name: string, ...args: any[]): AngularEvent; + $broadcast(name: string, ...args: any[]): IAngularEvent; $destroy(): void; $digest(): void; - $emit(name: string, ...args: any[]): AngularEvent; + $emit(name: string, ...args: any[]): IAngularEvent; // Documentation says exp is optional, but actual implementaton counts on it $eval(expression: string): any; - $eval(expression: (scope: Scope) => any): any; + $eval(expression: (scope: IScope) => any): any; // Documentation says exp is optional, but actual implementaton counts on it $evalAsync(expression: string): void; - $evalAsync(expression: (scope: Scope) => any): void; + $evalAsync(expression: (scope: IScope) => any): void; // Defaults to false by the implementation checking strategy - $new(isolate?: bool): Scope; + $new(isolate?: bool): IScope; - $on(name: string, listener: (event: AngularEvent, ...args: any[]) => any): Function; + $on(name: string, listener: (event: IAngularEvent, ...args: any[]) => any): Function; $watch(watchExpression: string, listener?: string, objectEquality?: bool): Function; - $watch(watchExpression: string, listener?: (newValue: any, oldValue: any, scope: Scope) => any, objectEquality?: bool): Function; - $watch(watchExpression: (scope: Scope) => any, listener?: string, objectEquality?: bool): Function; - $watch(watchExpression: (scope: Scope) => any, listener?: (newValue: any, oldValue: any, scope: Scope) => any, objectEquality?: bool): Function; + $watch(watchExpression: string, listener?: (newValue: any, oldValue: any, scope: IScope) => any, objectEquality?: bool): Function; + $watch(watchExpression: (scope: IScope) => any, listener?: string, objectEquality?: bool): Function; + $watch(watchExpression: (scope: IScope) => any, listener?: (newValue: any, oldValue: any, scope: IScope) => any, objectEquality?: bool): Function; $id: number; } - export interface AngularEvent { - targetScope: Scope; - currentScope: Scope; + interface IAngularEvent { + targetScope: IScope; + currentScope: IScope; name: string; preventDefault: Function; defaultPrevented: bool; @@ -185,21 +187,21 @@ module ng { // WindowService // see http://docs.angularjs.org/api/ng.$window /////////////////////////////////////////////////////////////////////////// - export interface WindowService extends Window {} + interface IWindowService extends Window {} /////////////////////////////////////////////////////////////////////////// // BrowserService // TODO undocumented, so we need to get it from the source code /////////////////////////////////////////////////////////////////////////// - export interface BrowserService {} + interface IBrowserService {} /////////////////////////////////////////////////////////////////////////// // TimeoutService // see http://docs.angularjs.org/api/ng.$timeout /////////////////////////////////////////////////////////////////////////// - export interface TimeoutService { - (func: Function, delay?: number, invokeApply?: bool): Promise; - cancel(promise: Promise): bool; + interface ITimeoutService { + (func: Function, delay?: number, invokeApply?: bool): IPromise; + cancel(promise: IPromise): bool; } /////////////////////////////////////////////////////////////////////////// @@ -207,36 +209,36 @@ module ng { // see http://docs.angularjs.org/api/ng.$filter // see http://docs.angularjs.org/api/ng.$filterProvider /////////////////////////////////////////////////////////////////////////// - export interface FilterService { + interface IFilterService { (name: string): Function; } - export interface FilterProvider extends ServiceProvider { - register(name: string, filterFactory: Function): ServiceProvider; + interface IFilterProvider extends IServiceProvider { + register(name: string, filterFactory: Function): IServiceProvider; } /////////////////////////////////////////////////////////////////////////// // LocaleService // see http://docs.angularjs.org/api/ng.$locale /////////////////////////////////////////////////////////////////////////// - export interface LocaleService { + interface ILocaleService { id: string; // These are not documented // Check angular's i18n files for exemples - NUMBER_FORMATS: LocaleNumberFormatDescriptor; + NUMBER_FORMATS: ILocaleNumberFormatDescriptor; DATETIME_FORMATS: any; pluralCat: (num: any) => string; } - export interface LocaleNumberFormatDescriptor { + interface ILocaleNumberFormatDescriptor { DECIMAL_SEP: string; GROUP_SEP: string; - PATTERNS: LocaleNumberPatternDescriptor[]; + PATTERNS: ILocaleNumberPatternDescriptor[]; CURRENCY_SYM: string; } - export interface LocaleNumberPatternDescriptor { + interface ILocaleNumberPatternDescriptor { minInt: number; minFrac: number; maxFrac: number; @@ -248,7 +250,7 @@ module ng { lgSize: number; } - export interface LacaleDateTimeFormatDescriptor { + interface ILacaleDateTimeFormatDescriptor { MONTH: string[]; SHORTMONTH: string[]; DAY: string[]; @@ -268,16 +270,16 @@ module ng { // LogService // see http://docs.angularjs.org/api/ng.$log /////////////////////////////////////////////////////////////////////////// - export interface LogService { - error: LogCall; - info: LogCall; - log: LogCall; - warn: LogCall; + interface ILogService { + error: ILogCall; + info: ILogCall; + log: ILogCall; + warn: ILogCall; } // We define this as separete interface so we can reopen it later for // the ngMock module. - interface LogCall { + interface ILogCall { (...args: any[]): void; } @@ -285,11 +287,11 @@ module ng { // ParseService // see http://docs.angularjs.org/api/ng.$parse /////////////////////////////////////////////////////////////////////////// - export interface ParseService { - (expression: string): CompiledExpression; + interface IParseService { + (expression: string): ICompiledExpression; } - export interface CompiledExpression { + interface ICompiledExpression { (context: any, locals?: any): any; // If value is not provided, undefined is gonna be used since the implementation @@ -304,45 +306,45 @@ module ng { // see http://docs.angularjs.org/api/ng.$locationProvider // see http://docs.angularjs.org/guide/dev_guide.services.$location /////////////////////////////////////////////////////////////////////////// - export interface LocationService { + interface ILocationService { absUrl(): string; hash(): string; - hash(newHash: string): LocationService; + hash(newHash: string): ILocationService; host(): string; path(): string; - path(newPath: string): LocationService; + path(newPath: string): ILocationService; port(): number; protocol(): string; - replace(): LocationService; + replace(): ILocationService; search(): string; - search(parametersMap: any): LocationService; - search(parameter: string, parameterValue: any): LocationService; + search(parametersMap: any): ILocationService; + search(parameter: string, parameterValue: any): ILocationService; url(): string; - url(url: string): LocationService; + url(url: string): ILocationService; } - export interface LocationProvider extends ServiceProvider { + interface ILocationProvider extends IServiceProvider { hashPrefix(): string; - hashPrefix(prefix: string): LocationProvider; + hashPrefix(prefix: string): ILocationProvider; html5Mode(): bool; // Documentation states that parameter is string, but // implementation tests it as boolean, which makes more sense // since this is a toggler - html5Mode(active: bool): LocationProvider; + html5Mode(active: bool): ILocationProvider; } /////////////////////////////////////////////////////////////////////////// // DocumentService // see http://docs.angularjs.org/api/ng.$document /////////////////////////////////////////////////////////////////////////// - export interface DocumentService extends Document {} + interface IDocumentService extends Document {} /////////////////////////////////////////////////////////////////////////// // ExceptionHandlerService // see http://docs.angularjs.org/api/ng.$exceptionHandler /////////////////////////////////////////////////////////////////////////// - export interface ExceptionHandlerService { + interface IExceptionHandlerService { (exception: Error, cause?: string): void; } @@ -350,24 +352,24 @@ module ng { // RootElementService // see http://docs.angularjs.org/api/ng.$rootElement /////////////////////////////////////////////////////////////////////////// - export interface RootElementService extends JQLiteOrBetter {} + interface IRootElementService extends IJQLiteOrBetter {} /////////////////////////////////////////////////////////////////////////// // QService // see http://docs.angularjs.org/api/ng.$q /////////////////////////////////////////////////////////////////////////// - export interface QService { - all(promises: Promise[]): Promise; - defer(): Deferred; - reject(reason?: any): Promise; - when(value: any): Promise; + interface IQService { + all(promises: IPromise[]): IPromise; + defer(): IDeferred; + reject(reason?: any): IPromise; + when(value: any): IPromise; } - export interface Promise { - then(successCallback: Function, errorCallback?: Function): Promise; + interface IPromise { + then(successCallback: Function, errorCallback?: Function): IPromise; } - export interface Deferred { + interface IDeferred { resolve(value?: any): void; reject(reason?: string): void; } @@ -376,11 +378,11 @@ module ng { // AnchorScrollService // see http://docs.angularjs.org/api/ng.$anchorScroll /////////////////////////////////////////////////////////////////////////// - export interface AnchorScrollService { + interface IAnchorScrollService { (): void; } - export interface AnchorScrollProvider extends ServiceProvider { + interface IAnchorScrollProvider extends IServiceProvider { disableAutoScrolling(): void; } @@ -388,19 +390,19 @@ module ng { // CacheFactoryService // see http://docs.angularjs.org/api/ng.$cacheFactory /////////////////////////////////////////////////////////////////////////// - export interface CacheFactoryService { + interface ICacheFactoryService { // Lets not foce the optionsMap to have the capacity member. Even though // it's the ONLY option considered by the implementation today, a consumer // might find it useful to associate some other options to the cache object. //(cacheId: string, optionsMap?: { capacity: number; }): CacheObject; - (cacheId: string, optionsMap?: { capacity: number; }): CacheObject; + (cacheId: string, optionsMap?: { capacity: number; }): ICacheObject; // Methods bellow are not documented info(): any; - get(cacheId: string): CacheObject; + get(cacheId: string): ICacheObject; } - export interface CacheObject { + interface ICacheObject { info(): { id: string; size: number; @@ -420,22 +422,22 @@ module ng { // see http://docs.angularjs.org/api/ng.$compile // see http://docs.angularjs.org/api/ng.$compileProvider /////////////////////////////////////////////////////////////////////////// - export interface CompileService { - (element: string, transclude?: TemplateLinkingFunction, maxPriority?: number): TemplateLinkingFunction; - (element: Element, transclude?: TemplateLinkingFunction, maxPriority?: number): TemplateLinkingFunction; - (element: JQLiteOrBetter, transclude?: TemplateLinkingFunction, maxPriority?: number): TemplateLinkingFunction; + interface ICompileService { + (element: string, transclude?: ITemplateLinkingFunction, maxPriority?: number): ITemplateLinkingFunction; + (element: Element, transclude?: ITemplateLinkingFunction, maxPriority?: number): ITemplateLinkingFunction; + (element: IJQLiteOrBetter, transclude?: ITemplateLinkingFunction, maxPriority?: number): ITemplateLinkingFunction; } - export interface CompileProvider extends ServiceProvider { - directive(name: string, directiveFactory: Function): CompileProvider; + interface ICompileProvider extends IServiceProvider { + directive(name: string, directiveFactory: Function): ICompileProvider; // Undocumented, but it is there... - directive(directivesMap: any): CompileProvider; + directive(directivesMap: any): ICompileProvider; } - export interface TemplateLinkingFunction { + interface ITemplateLinkingFunction { // Let's hint but not force cloneAttachFn's signature - (scope: Scope, cloneAttachFn?: (clonedElement?: JQLiteOrBetter, scope?: Scope) => any): JQLiteOrBetter; + (scope: IScope, cloneAttachFn?: (clonedElement?: IJQLiteOrBetter, scope?: IScope) => any): IJQLiteOrBetter; } /////////////////////////////////////////////////////////////////////////// @@ -443,13 +445,13 @@ module ng { // see http://docs.angularjs.org/api/ng.$controller // see http://docs.angularjs.org/api/ng.$controllerProvider /////////////////////////////////////////////////////////////////////////// - export interface ControllerService { + interface IControllerService { // Although the documentation doesn't state this, locals are optional (controllerConstructor: Function, locals?: any): any; (controllerName: string, locals?: any): any; } - export interface ControlerPovider extends ServiceProvider { + interface IControlerPovider extends IServiceProvider { register(name: string, controllerConstructor: Function): void; register(name: string, dependencyAnnotadedConstructor: any[]): void; } @@ -458,16 +460,16 @@ module ng { // HttpService // see http://docs.angularjs.org/api/ng.$http /////////////////////////////////////////////////////////////////////////// - export interface HttpService { + interface IHttpService { // At least moethod and url must be provided... - (config: RequestConfig): HttpPromise; - get(url: string, RequestConfig?: any): HttpPromise; - delete(url: string, RequestConfig?: any): HttpPromise; - head(url: string, RequestConfig?: any): HttpPromise; - jsonp(url: string, RequestConfig?: any): HttpPromise; - post(url: string, data: any, RequestConfig?: any): HttpPromise; - put(url: string, data: any, RequestConfig?: any): HttpPromise; - defaults: RequestConfig; + (config: IRequestConfig): IHttpPromise; + get(url: string, RequestConfig?: any): IHttpPromise; + delete(url: string, RequestConfig?: any): IHttpPromise; + head(url: string, RequestConfig?: any): IHttpPromise; + jsonp(url: string, RequestConfig?: any): IHttpPromise; + post(url: string, data: any, RequestConfig?: any): IHttpPromise; + put(url: string, data: any, RequestConfig?: any): IHttpPromise; + defaults: IRequestConfig; // For debugging, BUT it is documented as public, so... pendingRequests: any[]; @@ -476,7 +478,7 @@ module ng { // This is just for hinting. // Some opetions might not be available depending on the request. // see http://docs.angularjs.org/api/ng.$http#Usage for options explanations - export interface RequestConfig { + interface IRequestConfig { method: string; url: string; params?: any; @@ -494,20 +496,20 @@ module ng { transformResponse?: any; } - export interface HttpPromise extends Promise { - success(callback: (response: DestructuredResponse) => any): HttpPromise; - error(callback: (response: DestructuredResponse) => any): HttpPromise; + interface IHttpPromise extends IPromise { + success(callback: (response: IDestructuredResponse) => any): IHttpPromise; + error(callback: (response: IDestructuredResponse) => any): IHttpPromise; } - export interface DestructuredResponse { + interface IDestructuredResponse { data: any; status: number; headers: (headerName: string) => string; - config: RequestConfig; + config: IRequestConfig; } - export interface HttpProvider extends ServiceProvider { - defaults: RequestConfig; + interface IHttpProvider extends IServiceProvider { + defaults: IRequestConfig; } /////////////////////////////////////////////////////////////////////////// @@ -515,7 +517,7 @@ module ng { // see http://docs.angularjs.org/api/ng.$httpBackend // You should never need to use this service directly. /////////////////////////////////////////////////////////////////////////// - export interface HttpBackendService { + interface IHttpBackendService { // XXX Perhaps define callback signature in the future (method: string, url: string, post?: any, callback?: Function, headers?: any, timeout?: number, withCredentials?: bool); void; } @@ -525,57 +527,57 @@ module ng { // see http://docs.angularjs.org/api/ng.$interpolate // see http://docs.angularjs.org/api/ng.$interpolateProvider /////////////////////////////////////////////////////////////////////////// - export interface InterpolateService { - (text: string, mustHaveExpression?: bool): InterpolationFunction; + interface IInterpolateService { + (text: string, mustHaveExpression?: bool): IInterpolationFunction; endSymbol(): string; startSymbol(): string; } - export interface InterpolationFunction { + interface IInterpolationFunction { (context: any): string; } - export interface InterpolateProvider extends ServiceProvider { + interface IInterpolateProvider extends IServiceProvider { startSymbol(): string; - startSymbol(value: string): InterpolateProvider; + startSymbol(value: string): IInterpolateProvider; endSymbol(): string; - endSymbol(value: string): InterpolateProvider; + endSymbol(value: string): IInterpolateProvider; } /////////////////////////////////////////////////////////////////////////// // RouteParamsService // see http://docs.angularjs.org/api/ng.$routeParams /////////////////////////////////////////////////////////////////////////// - export interface RouteParamsService {} + interface IRouteParamsService {} /////////////////////////////////////////////////////////////////////////// // TemplateCacheService // see http://docs.angularjs.org/api/ng.$templateCache /////////////////////////////////////////////////////////////////////////// - export interface TemplateCacheService extends CacheObject {} + interface ITemplateCacheService extends ICacheObject {} /////////////////////////////////////////////////////////////////////////// // RootScopeService // see http://docs.angularjs.org/api/ng.$rootScope /////////////////////////////////////////////////////////////////////////// - export interface RootScopeService extends Scope {} + interface IRootScopeService extends IScope {} /////////////////////////////////////////////////////////////////////////// // RouteService // see http://docs.angularjs.org/api/ng.$route // see http://docs.angularjs.org/api/ng.$routeProvider /////////////////////////////////////////////////////////////////////////// - export interface RouteService { + interface IRouteService { reload(): void; routes: any; // May not always be available. For instance, current will not be available // to a controller that was not initialized as a result of a route maching. - current?: CurrentRoute; + current?: ICurrentRoute; } // see http://docs.angularjs.org/api/ng.$routeProvider#when for options explanations - export interface Route { + interface IRoute { controller?: any; template?: string; templateUrl?: string; @@ -585,28 +587,28 @@ module ng { } // see http://docs.angularjs.org/api/ng.$route#current - export interface CurrentRoute extends Route { + interface ICurrentRoute extends IRoute { locals: { - $scope: Scope; + $scope: IScope; $template: string; }; } - export interface RouteProviderProvider extends ServiceProvider { - otherwise(params: any): RouteProviderProvider; - when(path: string, route: Route): RouteProviderProvider; + interface IRouteProviderProvider extends IServiceProvider { + otherwise(params: any): IRouteProviderProvider; + when(path: string, route: IRoute): IRouteProviderProvider; } /////////////////////////////////////////////////////////////////////////// // AUTO module (angular.js) /////////////////////////////////////////////////////////////////////////// - module auto { + export module auto { /////////////////////////////////////////////////////////////////////// // InjectorService // see http://docs.angularjs.org/api/AUTO.$injector /////////////////////////////////////////////////////////////////////// - export interface InjectorService { + interface IInjectorService { annotate(fn: Function): string[]; annotate(inlineAnnotadedFunction: any[]): string[]; get(name: string): any; @@ -618,18 +620,18 @@ module ng { // ProvideService // see http://docs.angularjs.org/api/AUTO.$provide /////////////////////////////////////////////////////////////////////// - export interface ProvideService { + interface IProvideService { // Documentation says it returns the registered instance, but actual // implementation does not return anything. // constant(name: string, value: any): any; constant(name: string, value: any): void; decorator(name: string, decorator: Function): void; - factory(name: string, serviceFactoryFunction: Function): ng.ServiceProvider; - provider(name: string, provider: ng.ServiceProvider): ng.ServiceProvider; - provider(name: string, serviceProviderConstructor: Function): ng.ServiceProvider; - service(name: string, constructor: Function): ng.ServiceProvider; - value(name: string, value: any): ng.ServiceProvider; + factory(name: string, serviceFactoryFunction: Function): ng.IServiceProvider; + provider(name: string, provider: ng.IServiceProvider): ng.IServiceProvider; + provider(name: string, serviceProviderConstructor: Function): ng.IServiceProvider; + service(name: string, constructor: Function): ng.IServiceProvider; + value(name: string, value: any): ng.IServiceProvider; } } diff --git a/Definitions/angular-cookies-1.0.2.d.ts b/Definitions/angular-cookies-1.0.2.d.ts index 876ae5f2e..d3f2f85f7 100644 --- a/Definitions/angular-cookies-1.0.2.d.ts +++ b/Definitions/angular-cookies-1.0.2.d.ts @@ -14,13 +14,13 @@ module ng.cookies { // CookieService // see http://docs.angularjs.org/api/ngCookies.$cookies /////////////////////////////////////////////////////////////////////////// - export interface CookiesService {} + interface ICookiesService {} /////////////////////////////////////////////////////////////////////////// // CookieStoreService // see http://docs.angularjs.org/api/ngCookies.$cookieStore /////////////////////////////////////////////////////////////////////////// - export interface CookieStoreService { + interface ICookieStoreService { get(key: string): any; put(key: string, value: any): void; remove(key: string): void; diff --git a/Definitions/angular-mocks-1.0.2.d.ts b/Definitions/angular-mocks-1.0.2.d.ts index cbadc152b..04702f022 100644 --- a/Definitions/angular-mocks-1.0.2.d.ts +++ b/Definitions/angular-mocks-1.0.2.d.ts @@ -14,11 +14,11 @@ module ng { // AngularStatic // We reopen it to add the MockStatic definition /////////////////////////////////////////////////////////////////////////// - export interface AngularStatic { - mock: MockStatic; + interface IAngularStatic { + mock: IMockStatic; } - interface MockStatic { + interface IMockStatic { // see http://docs.angularjs.org/api/angular.mock.debug debug(obj: any): string; @@ -38,7 +38,7 @@ module ng { // see http://docs.angularjs.org/api/ngMock.$exceptionHandler // see http://docs.angularjs.org/api/ngMock.$exceptionHandlerProvider /////////////////////////////////////////////////////////////////////////// - export interface ExceptionHandlerProvider extends ServiceProvider { + interface IExceptionHandlerProvider extends IServiceProvider { mode(mode: string): void; } @@ -47,7 +47,7 @@ module ng { // see http://docs.angularjs.org/api/ngMock.$timeout // Augments the original service /////////////////////////////////////////////////////////////////////////// - export interface TimeoutService { + interface ITimeoutService { flush(): void; } @@ -56,7 +56,7 @@ module ng { // see http://docs.angularjs.org/api/ngMock.$log // Augments the original service /////////////////////////////////////////////////////////////////////////// - export interface LogService { + interface ILogService { assertEmpty(): void; reset(): void; } @@ -69,77 +69,77 @@ module ng { // HttpBackendService // see http://docs.angularjs.org/api/ngMock.$httpBackend /////////////////////////////////////////////////////////////////////////// - export interface HttpBackendService { + interface IHttpBackendService { flush(count: number): void; resetExpectations(): void; verifyNoOutstandingExpectation(): void; verifyNoOutstandingRequest(): void; - expect(method: string, url: string, data?: string, headers?: any): mock.RequestHandler; - expect(method: string, url: RegExp, data?: string, headers?: any): mock.RequestHandler; - expect(method: string, url: string, data?: RegExp, headers?: any): mock.RequestHandler; - expect(method: string, url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; - expect(method: RegExp, url: string, data?: string, headers?: any): mock.RequestHandler; - expect(method: RegExp, url: RegExp, data?: string, headers?: any): mock.RequestHandler; - expect(method: RegExp, url: string, data?: RegExp, headers?: any): mock.RequestHandler; - expect(method: RegExp, url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + expect(method: string, url: string, data?: string, headers?: any): mock.IRequestHandler; + expect(method: string, url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + expect(method: string, url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + expect(method: string, url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; + expect(method: RegExp, url: string, data?: string, headers?: any): mock.IRequestHandler; + expect(method: RegExp, url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + expect(method: RegExp, url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + expect(method: RegExp, url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; - when(method: string, url: string, data?: string, headers?: any): mock.RequestHandler; - when(method: string, url: RegExp, data?: string, headers?: any): mock.RequestHandler; - when(method: string, url: string, data?: RegExp, headers?: any): mock.RequestHandler; - when(method: string, url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; - when(method: RegExp, url: string, data?: string, headers?: any): mock.RequestHandler; - when(method: RegExp, url: RegExp, data?: string, headers?: any): mock.RequestHandler; - when(method: RegExp, url: string, data?: RegExp, headers?: any): mock.RequestHandler; - when(method: RegExp, url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + when(method: string, url: string, data?: string, headers?: any): mock.IRequestHandler; + when(method: string, url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + when(method: string, url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + when(method: string, url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; + when(method: RegExp, url: string, data?: string, headers?: any): mock.IRequestHandler; + when(method: RegExp, url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + when(method: RegExp, url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + when(method: RegExp, url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; - expectDELETE(url: string, headers?: any): mock.RequestHandler; - expectDELETE(url: RegExp, headers?: any): mock.RequestHandler; - expectGET(url: string, headers?: any): mock.RequestHandler; - expectGET(url: RegExp, headers?: any): mock.RequestHandler; - expectHEAD(url: string, headers?: any): mock.RequestHandler; - expectHEAD(url: RegExp, headers?: any): mock.RequestHandler; - expectJSONP(url: string): mock.RequestHandler; - expectJSONP(url: RegExp): mock.RequestHandler; - expectPATCH(url: string, data?: string, headers?: any): mock.RequestHandler; - expectPATCH(url: RegExp, data?: string, headers?: any): mock.RequestHandler; - expectPATCH(url: string, data?: RegExp, headers?: any): mock.RequestHandler; - expectPATCH(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; - expectPOST(url: string, data?: string, headers?: any): mock.RequestHandler; - expectPOST(url: RegExp, data?: string, headers?: any): mock.RequestHandler; - expectPOST(url: string, data?: RegExp, headers?: any): mock.RequestHandler; - expectPOST(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; - expectPUT(url: string, data?: string, headers?: any): mock.RequestHandler; - expectPUT(url: RegExp, data?: string, headers?: any): mock.RequestHandler; - expectPUT(url: string, data?: RegExp, headers?: any): mock.RequestHandler; - expectPUT(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + expectDELETE(url: string, headers?: any): mock.IRequestHandler; + expectDELETE(url: RegExp, headers?: any): mock.IRequestHandler; + expectGET(url: string, headers?: any): mock.IRequestHandler; + expectGET(url: RegExp, headers?: any): mock.IRequestHandler; + expectHEAD(url: string, headers?: any): mock.IRequestHandler; + expectHEAD(url: RegExp, headers?: any): mock.IRequestHandler; + expectJSONP(url: string): mock.IRequestHandler; + expectJSONP(url: RegExp): mock.IRequestHandler; + expectPATCH(url: string, data?: string, headers?: any): mock.IRequestHandler; + expectPATCH(url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + expectPATCH(url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + expectPATCH(url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; + expectPOST(url: string, data?: string, headers?: any): mock.IRequestHandler; + expectPOST(url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + expectPOST(url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + expectPOST(url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; + expectPUT(url: string, data?: string, headers?: any): mock.IRequestHandler; + expectPUT(url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + expectPUT(url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + expectPUT(url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; - whenDELETE(url: string, headers?: any): mock.RequestHandler; - whenDELETE(url: RegExp, headers?: any): mock.RequestHandler; - whenGET(url: string, headers?: any): mock.RequestHandler; - whenGET(url: RegExp, headers?: any): mock.RequestHandler; - whenHEAD(url: string, headers?: any): mock.RequestHandler; - whenHEAD(url: RegExp, headers?: any): mock.RequestHandler; - whenJSONP(url: string): mock.RequestHandler; - whenJSONP(url: RegExp): mock.RequestHandler; - whenPATCH(url: string, data?: string, headers?: any): mock.RequestHandler; - whenPATCH(url: RegExp, data?: string, headers?: any): mock.RequestHandler; - whenPATCH(url: string, data?: RegExp, headers?: any): mock.RequestHandler; - whenPATCH(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; - whenPOST(url: string, data?: string, headers?: any): mock.RequestHandler; - whenPOST(url: RegExp, data?: string, headers?: any): mock.RequestHandler; - whenPOST(url: string, data?: RegExp, headers?: any): mock.RequestHandler; - whenPOST(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; - whenPUT(url: string, data?: string, headers?: any): mock.RequestHandler; - whenPUT(url: RegExp, data?: string, headers?: any): mock.RequestHandler; - whenPUT(url: string, data?: RegExp, headers?: any): mock.RequestHandler; - whenPUT(url: RegExp, data?: RegExp, headers?: any): mock.RequestHandler; + whenDELETE(url: string, headers?: any): mock.IRequestHandler; + whenDELETE(url: RegExp, headers?: any): mock.IRequestHandler; + whenGET(url: string, headers?: any): mock.IRequestHandler; + whenGET(url: RegExp, headers?: any): mock.IRequestHandler; + whenHEAD(url: string, headers?: any): mock.IRequestHandler; + whenHEAD(url: RegExp, headers?: any): mock.IRequestHandler; + whenJSONP(url: string): mock.IRequestHandler; + whenJSONP(url: RegExp): mock.IRequestHandler; + whenPATCH(url: string, data?: string, headers?: any): mock.IRequestHandler; + whenPATCH(url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + whenPATCH(url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + whenPATCH(url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; + whenPOST(url: string, data?: string, headers?: any): mock.IRequestHandler; + whenPOST(url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + whenPOST(url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + whenPOST(url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; + whenPUT(url: string, data?: string, headers?: any): mock.IRequestHandler; + whenPUT(url: RegExp, data?: string, headers?: any): mock.IRequestHandler; + whenPUT(url: string, data?: RegExp, headers?: any): mock.IRequestHandler; + whenPUT(url: RegExp, data?: RegExp, headers?: any): mock.IRequestHandler; } export module mock { // returned interface by the the mocked HttpBackendService expect/when methods - export interface RequestHandler { + interface IRequestHandler { respond(func: Function): void; respond(status: number, data?: any, headers?: any): void; respond(data: any, headers?: any): void; diff --git a/Definitions/angular-resource-1.0.2.d.ts b/Definitions/angular-resource-1.0.2.d.ts index 0ae67e1b0..bfa071a03 100644 --- a/Definitions/angular-resource-1.0.2.d.ts +++ b/Definitions/angular-resource-1.0.2.d.ts @@ -17,12 +17,12 @@ module ng.resource { // actual implementation, since the documentation doesn't seem to cover // that deeply. /////////////////////////////////////////////////////////////////////////// - export interface ResourceService { - (url: string, paramDefaults?: any, actionDescriptors?: any): ResourceClass; + interface IResourceService { + (url: string, paramDefaults?: any, actionDescriptors?: any): IResourceClass; } // Just a reference to facilitate describing new actions - export interface ActionDescriptor { + interface IActionDescriptor { method: string; isArray?: bool; params?: any; @@ -32,34 +32,34 @@ module ng.resource { // Baseclass for everyresource with default actions. // If you define your new actions for the resource, you will need // to extend this interface and typecast the ResourceClass to it. - export interface ResourceClass { - get: ActionCall; - save: ActionCall; - query: ActionCall; - remove: ActionCall; - delete: ActionCall; + interface IResourceClass { + get: IActionCall; + save: IActionCall; + query: IActionCall; + remove: IActionCall; + delete: IActionCall; } // In case of passing the first argument as anything but a function, // it's gonna be considered data if the action method is POST, PUT or // PATCH (in other words, methods with body). Otherwise, it's going // to be considered as parameters to the request. - export interface ActionCall { - (): Resource; - (dataOrParams: any): Resource; - (dataOrParams: any, success: Function): Resource; - (success: Function, error?: Function): Resource; - (params: any, data: any, success?: Function, error?: Function): Resource; + interface IActionCall { + (): IResource; + (dataOrParams: any): IResource; + (dataOrParams: any, success: Function): IResource; + (success: Function, error?: Function): IResource; + (params: any, data: any, success?: Function, error?: Function): IResource; } - export interface Resource { - $save: ActionCall; - $remove: ActionCall; - $delete: ActionCall; + interface IResource { + $save: IActionCall; + $remove: IActionCall; + $delete: IActionCall; // No documented, but they are there, just as any custom action will be - $query: ActionCall; - $get: ActionCall; + $query: IActionCall; + $get: IActionCall; } } diff --git a/Definitions/angular-sanitize-1.0.2.d.ts b/Definitions/angular-sanitize-1.0.2.d.ts index 105a9d5ca..61885ae5e 100644 --- a/Definitions/angular-sanitize-1.0.2.d.ts +++ b/Definitions/angular-sanitize-1.0.2.d.ts @@ -14,7 +14,7 @@ module ng.sanitize { // SanitizeService // see http://docs.angularjs.org/api/ngSanitize.$sanitize /////////////////////////////////////////////////////////////////////////// - export interface SanitizeService { + interface ISanitizeService { (html: string): string; } From ed74ea087a2c882eee4be7f2e1c0ef39b277028a Mon Sep 17 00:00:00 2001 From: Diego Vilar Date: Thu, 25 Oct 2012 03:16:21 -0200 Subject: [PATCH 3/6] Moved AngularJS to the Complete section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 805439189..fb57cb782 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ The project aims to provide *high quality* definitions for the most popular libr Complete -------- +* [AngularJS](http://angularjs.org) (by [Diego Vilar](https://github.com/diegovilar)) * [async](https://github.com/caolan/async) * [Backbone.js](http://backbonejs.org/) * [Bootstrap](http://twitter.github.com/bootstrap/) @@ -35,7 +36,6 @@ Complete Next ---- * Knockout.Mapping -* Angular.js * Facebook SDK * jQuery.Validate * jQuery Mobile From 8f55214b52e999b4d7dec9d2bc77da1178af981d Mon Sep 17 00:00:00 2001 From: Diego Vilar Date: Thu, 25 Oct 2012 12:07:00 -0300 Subject: [PATCH 4/6] Added promise property for the ng.IDeferred interface Signed-off-by: Diego Vilar --- Definitions/angular-1.0.2.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/Definitions/angular-1.0.2.d.ts b/Definitions/angular-1.0.2.d.ts index 73d491507..d91dea74b 100644 --- a/Definitions/angular-1.0.2.d.ts +++ b/Definitions/angular-1.0.2.d.ts @@ -372,6 +372,7 @@ module ng { interface IDeferred { resolve(value?: any): void; reject(reason?: string): void; + promise: IPromise; } /////////////////////////////////////////////////////////////////////////// From 44d6bdc5ee402fe60f9a364a2e165333696c7e9a Mon Sep 17 00:00:00 2001 From: Diego Vilar Date: Thu, 25 Oct 2012 13:10:27 -0200 Subject: [PATCH 5/6] Added link for AngularJS definitions wiki page --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb57cb782..cdfddcfcb 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The project aims to provide *high quality* definitions for the most popular libr Complete -------- -* [AngularJS](http://angularjs.org) (by [Diego Vilar](https://github.com/diegovilar)) +* [AngularJS](http://angularjs.org) (by [Diego Vilar](https://github.com/diegovilar)) ([wiki](wiki/AngularJS-Definitions-Usage-Notes)) * [async](https://github.com/caolan/async) * [Backbone.js](http://backbonejs.org/) * [Bootstrap](http://twitter.github.com/bootstrap/) From 81b81c1e63504c4fea8cf02e9680de352328c0fd Mon Sep 17 00:00:00 2001 From: Diego Vilar Date: Thu, 25 Oct 2012 13:11:56 -0200 Subject: [PATCH 6/6] Relative wiki link was not a good idea --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cdfddcfcb..157804e36 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The project aims to provide *high quality* definitions for the most popular libr Complete -------- -* [AngularJS](http://angularjs.org) (by [Diego Vilar](https://github.com/diegovilar)) ([wiki](wiki/AngularJS-Definitions-Usage-Notes)) +* [AngularJS](http://angularjs.org) (by [Diego Vilar](https://github.com/diegovilar)) ([wiki](https://github.com/borisyankov/DefinitelyTyped/wiki/AngularJS-Definitions-Usage-Notes)) * [async](https://github.com/caolan/async) * [Backbone.js](http://backbonejs.org/) * [Bootstrap](http://twitter.github.com/bootstrap/)