mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
20 lines
438 B
TypeScript
20 lines
438 B
TypeScript
// Type definitions for Dojo v1.9
|
|
// Project: http://dojotoolkit.org
|
|
// Definitions by: Michael Van Sickle <https://github.com/vansimke>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module dojox {
|
|
/**
|
|
* Permalink: http://dojotoolkit.org/api/1.9/dojox/storage.html
|
|
*
|
|
*
|
|
*/
|
|
interface storage {
|
|
}
|
|
}
|
|
|
|
declare module "dojox/storage" {
|
|
var exp: dojox.storage
|
|
export=exp;
|
|
}
|