Removing the masked input typings for later adding.

This commit is contained in:
Daniel Ferreira Monteiro Alves
2013-11-18 02:26:36 -02:00
parent f263ecbe09
commit ef86b94c09
-24
View File
@@ -1,24 +0,0 @@
/// <reference path="../jquery/jquery.d.ts" />
interface Caret {
begin: number;
end: number;
}
interface JQuery {
caret(): Caret;
caret(begin: number, end?: number);
mask(format: string): JQuery;
unmask(): JQuery;
}
interface JQueryMaskedInputOptions {
definitions: {
[entry: string]: string;
};
}
interface JQueryStatic {
mask: JQueryMaskedInputOptions;
}