George Valotasios
|
0c7075602f
|
Merge upstream into express-router
|
2013-12-18 10:26:20 +01:00 |
|
Basarat Ali Syed
|
38ee125492
|
Update socket.io.d.ts
|
2013-12-18 18:24:15 +11:00 |
|
Masahiro Wakame
|
3fcb43928f
|
Merge pull request #1424 from brian428/_sencha_touch
Update to TS 0.9.5; add logic to include static properties.
|
2013-12-17 20:12:56 -08:00 |
|
Brian Kotek
|
364a43d444
|
Finally getting the file name right
|
2013-12-17 22:41:37 -05:00 |
|
Masahiro Wakame
|
baa8c18942
|
Merge pull request #1460 from jvilk/node-fixes
[Node] Changing `fs` module callbacks to use `ErrnoException`
|
2013-12-17 18:56:47 -08:00 |
|
Masahiro Wakame
|
6ffb56da12
|
Merge pull request #1459 from rwhepburn/master
Added TypeScript Definition files for Html2Canvas
|
2013-12-17 18:47:33 -08:00 |
|
Masahiro Wakame
|
900f253278
|
Merge pull request #1458 from mapsjs/master
Various updates to the definition file for the MapsJS Typescript Library
|
2013-12-17 18:41:37 -08:00 |
|
Masahiro Wakame
|
b40911ad8c
|
Merge pull request #1451 from loyd/master
node-ffi: adopt for --noImplicitAny
|
2013-12-17 18:06:38 -08:00 |
|
Masahiro Wakame
|
e86eb8cec4
|
Merge pull request #1449 from ufon/master
Restify: updated plugin definitions, allowed --noImplicitAny compile flag
|
2013-12-17 18:02:16 -08:00 |
|
Masahiro Wakame
|
8711419cbb
|
Merge pull request #1447 from damianog/patch-6
Update angular-scenario.d.ts 'enter' lacks return-type annotation
|
2013-12-17 18:00:50 -08:00 |
|
Masahiro Wakame
|
3f0a20b978
|
Merge pull request #1446 from GaryB432/explicit-any
adding explicit any
|
2013-12-17 18:00:15 -08:00 |
|
Masahiro Wakame
|
40ab26db02
|
Merge pull request #1443 from butlersoftware/knockout---TypeScript-0.9.5-fixes
various knockout test fixes
|
2013-12-17 17:55:58 -08:00 |
|
John Vilk
|
cddd0b7aab
|
[Node] Node attaches errno information to some exceptions.
This is valuable information for Node applications that need to figure out why a particular system call failed.
Note that errno can either be a string or a number, which is why I have typed it as 'any'.
While this is undocumented, it is tested:
Code property: https://github.com/joyent/node/blob/v0.10.23-release/test/simple/test-fs-open.js#L34
Errno property [string]: https://github.com/joyent/node/blob/v0.10.23-release/test/internet/test-dns.js#L148
Errno property [number]: https://github.com/joyent/node/blob/v0.10.23-release/test/simple/test-domain-implicit-fs.js#L43
Syscall property: https://github.com/joyent/node/blob/v0.10.23-release/test/simple/test-stdout-close-catch.js#L38
Path property (I can’t find a test, but many examples have this line): https://github.com/joyent/node/blob/v0.10.23-release/deps/npm/node_modules/fstream-npm/example/bundle.js#L6
..and well supported in the code for all platforms (this is where I got the name 'ErrnoException' from):
*nix: https://github.com/joyent/node/blob/v0.10.23-release/src/node.cc#L719
Windows: https://github.com/joyent/node/blob/v0.10.23-release/src/node.cc#L856
Unfortunately, while every errno exception is guaranteed to have the ‘errno’ and ‘code’ properties (see the logic in the source code in node.cc), there is no hard guarantee that particular library functions will always pass an ErrnoException to the callback. I cannot find a counterexample at this moment, though. Since we can’t have union types in TypeScript, I simply made all of the properties on ErrnoException optional as a compromise.
I am only adding modifications to the fs module, which definitely throws ErrnoExceptions. But according to the examples above, other modules (e.g. dns) also pass errno information back to applications. People familiar with those other modules can update their typings to reference this interface when applicable; I lack the experience with those modules to update their typings.
Further proof:
```javascript
$ node
> var fs = require('fs');
undefined
> fs.open('doesntexistlol', 'r', function(e) { console.log(Object.keys(e)); console.log(e.code); console.log(e.errno); console.log(e.path); });
undefined
> [ 'errno', 'code', 'path' ]
ENOENT
34
doesntexistlol
```
|
2013-12-17 16:36:08 -05:00 |
|
Richard Hepburn
|
93d4a19972
|
Added TypeScript Definition files for Html2Canvas
Added TypeScript Definition files for Html2Canvas - a library for taking
screenshots of a browser window.
|
2013-12-17 11:29:04 -05:00 |
|
Matthew James Davis
|
939223787d
|
update
|
2013-12-17 11:14:41 -05:00 |
|
Matthew James Davis
|
8e06913b6a
|
Merge branch 'master' of https://github.com/mapsjs/DefinitelyTyped
Conflicts:
mapsjs/mapsjs.d.ts
|
2013-12-17 11:14:01 -05:00 |
|
Matthew James Davis
|
d82aee98f0
|
update
|
2013-12-17 11:08:13 -05:00 |
|
Basarat Ali Syed
|
718eff7763
|
Merge pull request #1456 from daptiv/54952-use-new-tslint-rules
Update angular resource definitions, and add injector definition
|
2013-12-17 02:34:08 -08:00 |
|
John Emau
|
459e286cd0
|
added syntax highlighting
|
2013-12-16 19:17:47 -08:00 |
|
John Emau
|
a859e22699
|
added missing test for resource service factory and updated readme
|
2013-12-16 19:15:42 -08:00 |
|
John Emau
|
71e23deadd
|
added tests for new angular-resource generics signatures
|
2013-12-16 19:03:37 -08:00 |
|
Jonathan Park
|
72cc261506
|
adding invoke inline annotated functions
|
2013-12-16 17:39:28 -08:00 |
|
Jonathan Park
|
41a7127404
|
updating angular resource and injector definitions
|
2013-12-16 17:17:39 -08:00 |
|
Basarat Ali Syed
|
8828800831
|
Merge pull request #1383 from jedmao/handlebars
Fix Ember/Handlebars
|
2013-12-16 16:26:32 -08:00 |
|
George Valotasios
|
47bcdb5cd8
|
Just a dummy eol to cause travis to rebuild
|
2013-12-16 15:27:51 +01:00 |
|
Basarat Ali Syed
|
1d30cca2e7
|
Merge pull request #1453 from damianog/patch-9
Update highcharts.d.ts Fixed missing type declarations.
|
2013-12-16 03:47:40 -08:00 |
|
Basarat Ali Syed
|
efd60916df
|
Merge pull request #1452 from damianog/patch-8
Update globalize.d.ts 'format' lacks return-type annotation
|
2013-12-16 03:47:15 -08:00 |
|
Basarat Ali Syed
|
30a55d258b
|
Merge pull request #1454 from michalkutil/master
jQuery: The interface used to specify easing functions add
|
2013-12-15 15:16:22 -08:00 |
|
Michal Kutil
|
0d2fb0d17a
|
jQuery: The interface used to specify easing functions add
|
2013-12-15 23:04:05 +01:00 |
|
Masahiro Wakame
|
909a178441
|
Merge pull request #1442 from brettpostin/patch-1
Update to resolve issue #1434
|
2013-12-15 06:50:22 -08:00 |
|
damianog
|
a3cca0d72f
|
Update highcharts.d.ts
Fixed missing type declarations.
|
2013-12-15 13:50:21 +01:00 |
|
damianog
|
ef0db52948
|
Update globalize.d.ts
'format' lacks return-type annotation
|
2013-12-15 13:16:39 +01:00 |
|
Jed Hunsaker
|
a63e5a7e1e
|
Fix Ember/Handlebars
|
2013-12-14 14:21:00 -06:00 |
|
Paul Loyd
|
61d7c7cb00
|
node-ffi: adopt for --noImplicitAny
|
2013-12-15 00:05:05 +04:00 |
|
Václav Oborník
|
ee212d0ece
|
Restify: updated plugin defintions, allowed --noImplicitAny compile flag
|
2013-12-14 00:06:24 +01:00 |
|
damianog
|
0e8a450390
|
Update angular-scenario.d.ts
'enter' lacks return-type annotation, implicitly has an 'any' return type
|
2013-12-13 19:49:11 +01:00 |
|
George Valotasios
|
e9402f9f23
|
Removed the extends from the IRouter definition
|
2013-12-13 14:22:49 +01:00 |
|
Thomas Butler
|
cbc8adfb1e
|
removed duplicate identifier 'update'
|
2013-12-13 07:25:35 -05:00 |
|
Thomas Butler
|
e61f72fd71
|
removed access of non-existant property
|
2013-12-13 07:24:45 -05:00 |
|
Thomas Butler
|
18beeab5e2
|
changed [illegal] variant type usage to a prefered static typing
|
2013-12-13 07:20:48 -05:00 |
|
George Valotasios
|
bdd3ad1e62
|
Make use of generics for IRouter
so that we do not have to override everyting at the Application
interface
|
2013-12-13 13:13:11 +01:00 |
|
George Valotasios
|
6c53d6db83
|
Redifine IRouter method signatures
with in the Application interface to return an Application object
|
2013-12-13 11:21:17 +01:00 |
|
Brett Postin
|
bb1fbec552
|
Update to resolve issue #1434
Alternative fix as suggested here:
https://github.com/borisyankov/DefinitelyTyped/pull/1435
|
2013-12-13 10:11:18 +00:00 |
|
George Valotasios
|
27207fc221
|
Better definition of the express Router class
|
2013-12-13 11:08:42 +01:00 |
|
Brian Kotek
|
a2020efa1a
|
Fix typo in 2.2.1 file name.
|
2013-12-13 02:23:07 -05:00 |
|
Brian Kotek
|
6031aac6f0
|
Work around incorrect property type for xtype in Sencha docs.
|
2013-12-13 00:32:02 -05:00 |
|
Masahiro Wakame
|
7469c06f42
|
Merge pull request #1440 from ashwinr/master
Update when.d.ts
|
2013-12-12 19:46:05 -08:00 |
|
Masahiro Wakame
|
0daed330d1
|
Merge pull request #1439 from jvilk/node-fixes
[Node] Removing incorrect typing for `buffer.INSPECT_MAX_BYTES`.
|
2013-12-12 19:42:45 -08:00 |
|
Masahiro Wakame
|
3e14f31e63
|
Merge pull request #1437 from DevExpress/master
Support for 0.9.5 compiler version added
|
2013-12-12 18:35:25 -08:00 |
|
Masahiro Wakame
|
b459266af9
|
Merge pull request #1436 from nvivo/backbone-opional-params
Makes some parameters optional, as they are not required by backbone.
|
2013-12-12 18:31:46 -08:00 |
|