Skip to content

Commit

Permalink
Fix angularjs/angular; 'export declare'/'declare export'
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanCavanaugh committed Apr 25, 2016
1 parent 31dfe55 commit 541e24b
Show file tree
Hide file tree
Showing 293 changed files with 2,043 additions and 2,043 deletions.
12 changes: 6 additions & 6 deletions JSONStream/JSONStream.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export interface Options {
recurse: boolean;
}

declare export function parse(pattern: any): NodeJS.ReadWriteStream;
declare export function parse(patterns: any[]): NodeJS.ReadWriteStream;
export declare function parse(pattern: any): NodeJS.ReadWriteStream;
export declare function parse(patterns: any[]): NodeJS.ReadWriteStream;

declare export function stringify(): NodeJS.ReadWriteStream;
declare export function stringify(open: string, sep: string, close: string): NodeJS.ReadWriteStream;
export declare function stringify(): NodeJS.ReadWriteStream;
export declare function stringify(open: string, sep: string, close: string): NodeJS.ReadWriteStream;

declare export function stringifyObject(): NodeJS.ReadWriteStream;
declare export function stringifyObject(open: string, sep: string, close: string): NodeJS.ReadWriteStream;
export declare function stringifyObject(): NodeJS.ReadWriteStream;
export declare function stringifyObject(open: string, sep: string, close: string): NodeJS.ReadWriteStream;
2 changes: 1 addition & 1 deletion adal/adal-angular.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="adal.d.ts" />
/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace adal {

Expand Down
2 changes: 1 addition & 1 deletion amazon-product-api/amazon-product-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ interface IAmazonProductClient {
browseNodeLookup(query: any, callback?: IAmazonProductQueryCallback): Promise<Object[]>;
}

declare export function createClient(credentials: ICredentials): IAmazonProductClient;
export declare function createClient(credentials: ICredentials): IAmazonProductClient;
4 changes: 2 additions & 2 deletions amqp-rpc/amqp-rpc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ export interface CallbackWithError {
(err: any, ...args: any[]): void;
}

declare export function factory(opt?: Options): amqpRPC;
export declare function factory(opt?: Options): amqpRPC;

declare export class amqpRPC {
export declare class amqpRPC {
constructor(opt?: Options);
generateQueueName(type: string): string;
disconnect(): void;
Expand Down
2 changes: 1 addition & 1 deletion angular-dynamic-locale/angular-dynamic-locale.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Stephen Lautier <https://github.com/stephenlautier>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare module "angular-dynamic-locale" {
import ng = angular.dynamicLocale;
Expand Down
2 changes: 1 addition & 1 deletion angular-formly/angular-formly.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Scott Hatcher <https://github.com/scatcher>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare module 'AngularFormly' {
export = AngularFormly;
Expand Down
2 changes: 1 addition & 1 deletion angular-fullscreen/angular-fullscreen.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Julien Paroche <https://github.com/julienpa>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/angular-fullscreen

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.fullscreen {

Expand Down
2 changes: 1 addition & 1 deletion angular-gettext/angular-gettext.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Ákos Lukács <https://github.com/AkosLukacs>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.gettext {
interface gettextCatalog {
Expand Down
2 changes: 1 addition & 1 deletion angular-google-analytics/angular-google-analytics.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Cyril Schumacher <https://github.com/cyrilschumacher>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.google.analytics {
/**
Expand Down
2 changes: 1 addition & 1 deletion angular-growl-v2/angular-growl-v2.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Tadeusz Hucal <https://github.com/mkp05>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.growl {

Expand Down
2 changes: 1 addition & 1 deletion angular-hotkeys/angular-hotkeys-tests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
/// <reference path="angular-hotkeys.d.ts" />

var scope: ng.IScope;
Expand Down
2 changes: 1 addition & 1 deletion angular-hotkeys/angular-hotkeys.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Jason Zhao <https://github.com/jlz27>, Stefan Steinhart <https://github.com/reppners>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.hotkeys {

Expand Down
2 changes: 1 addition & 1 deletion angular-http-auth/angular-http-auth.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: vvakame <https://github.com/vvakame>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.httpAuth {
interface IAuthService {
Expand Down
2 changes: 1 addition & 1 deletion angular-httpi/angular-httpi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Andrew Camilleri <https://github.com/Kukks>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace Httpi {
export interface HttpiPayload extends ng.IRequestShortcutConfig {
Expand Down
2 changes: 1 addition & 1 deletion angular-idle/angular-idle.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: mthamil <https://github.com/mthamil>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.idle {

Expand Down
2 changes: 1 addition & 1 deletion angular-jwt/angular-jwt-tests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
/// <reference path="angular-jwt.d.ts" />

var app = angular.module("angular-jwt-tests", ["angular-jwt"]);
Expand Down
2 changes: 1 addition & 1 deletion angular-jwt/angular-jwt.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Reto Rezzonico <https://github.com/rerezz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.jwt {

Expand Down
2 changes: 1 addition & 1 deletion angular-load/angular-load.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: david-gang <https://github.com/david-gang>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.load {

Expand Down
2 changes: 1 addition & 1 deletion angular-loading-bar/angular-loading-bar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Stephen Lautier <https://github.com/stephenlautier>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />


declare namespace angular {
Expand Down
2 changes: 1 addition & 1 deletion angular-localForage/angular-localForage.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../localForage/localForage.d.ts" />
/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.localForage {

Expand Down
2 changes: 1 addition & 1 deletion angular-locker/angular-locker.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Niko Kovačič <https://github.com/nkovacic>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare module "angular-locker" {
var _: string;
Expand Down
2 changes: 1 addition & 1 deletion angular-material/angular-material-0.8.3.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Matt Traynham <https://github.com/mtraynham>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
declare namespace angular.material {

interface MDBottomSheetOptions {
Expand Down
2 changes: 1 addition & 1 deletion angular-material/angular-material-0.9.0.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Matt Traynham <https://github.com/mtraynham>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
declare namespace angular.material {

interface MDBottomSheetOptions {
Expand Down
2 changes: 1 addition & 1 deletion angular-material/angular-material.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Matt Traynham <https://github.com/mtraynham>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
declare namespace angular.material {

interface IBottomSheetOptions {
Expand Down
2 changes: 1 addition & 1 deletion angular-media-queries/match-media.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Joao Monteiro <https://github.com/jpmnteiro>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
declare namespace angular.matchmedia {

interface IScreenSize {
Expand Down
2 changes: 1 addition & 1 deletion angular-meteor/angular-meteor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../meteor/meteor.d.ts" />
/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.meteor {
interface IRootScopeService extends angular.IRootScopeService {
Expand Down
2 changes: 1 addition & 1 deletion angular-modal/angular-modal-tests.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// <reference path="../jquery/jquery.d.ts" />
/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
/// <reference path="angular-modal.d.ts" />

var btfModal: angularModal.AngularModalFactory;
Expand Down
2 changes: 1 addition & 1 deletion angular-modal/angular-modal.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Paul Lessing <https://github.com/paullessing>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
/// <reference path="../jquery/jquery.d.ts" />

declare namespace angularModal {
Expand Down
2 changes: 1 addition & 1 deletion angular-notifications/angular-notifications.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Tomasz Ducin <https://github.com/ducin/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.notifications {

Expand Down
2 changes: 1 addition & 1 deletion angular-notify/angular-notify.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Suwato <https://github.com/Suwato/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

///<reference path="../angularjs/angular.d.ts" />
///<reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.cgNotify {

Expand Down
2 changes: 1 addition & 1 deletion angular-odata-resources/angular-odata-resources.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Raphael ATALLAH <http://raphael.atallah.me>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace OData {

Expand Down
2 changes: 1 addition & 1 deletion angular-permission/angular-permission.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Voislav Mishevski <https://github.com/vmishevski>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
/// <reference path="../angular-ui-router/angular-ui-router.d.ts" />

declare namespace angular.permission {
Expand Down
2 changes: 1 addition & 1 deletion angular-scroll/angular-scroll.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped


/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace duScroll {

Expand Down
2 changes: 1 addition & 1 deletion angular-spinner/angular-spinner.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Marcin Biegała <https://github.com/Biegal>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

/**
* SpinnerService
Expand Down
2 changes: 1 addition & 1 deletion angular-strap/angular-strap.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped


/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace mgcrea.ngStrap {

Expand Down
2 changes: 1 addition & 1 deletion angular-toastr/angular-toastr.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Niko Kovačič <https://github.com/nkovacic>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare module "angular-toastr" {
var _: string;
Expand Down
2 changes: 1 addition & 1 deletion angular-toasty/angular-toasty.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Dominik Muench <https://github.com/muenchdo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace toasty {

Expand Down
2 changes: 1 addition & 1 deletion angular-touchspin/angular-touchspin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Niko Kovačič <https://github.com/nkovacic>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

//// <reference path="../angularjs/angular.d.ts" />
//// <reference path="../angularjs/angularjs.d.ts" />


declare module "angular-touchspin" {
Expand Down
2 changes: 1 addition & 1 deletion angular-translate/angular-translate.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Michel Salib <https://github.com/michelsalib>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare module "angular-translate" {
import ngt = angular.translate;
Expand Down
2 changes: 1 addition & 1 deletion angular-ui-bootstrap/angular-ui-bootstrap.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Brian Surowiec <https://github.com/xt0rted>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

// Support for AMD require
declare module 'angular-bootstrap' {
Expand Down
2 changes: 1 addition & 1 deletion angular-ui-router/angular-ui-router.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Michel Salib <https://github.com/michelsalib>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

// Support for AMD require and CommonJS
declare module 'angular-ui-router' {
Expand Down
2 changes: 1 addition & 1 deletion angular-ui-scroll/angular-ui-scroll.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Mark Nadig <https://github.com/marknadig>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.ui {
interface IScrollDatasource<T> {
Expand Down
2 changes: 1 addition & 1 deletion angular-ui-sortable/angular-ui-sortable-tests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />
/// <reference path="angular-ui-sortable.d.ts" />

var myApp = angular.module('testModule');
Expand Down
2 changes: 1 addition & 1 deletion angular-ui-sortable/angular-ui-sortable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Thodoris Greasidis <https://github.com/thgreasi>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../angularjs/angularjs.d.ts" />

declare namespace angular.ui {

Expand Down
Loading

0 comments on commit 541e24b

Please sign in to comment.