mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
35 lines
753 B
TypeScript
35 lines
753 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/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace dojox {
|
|
|
|
namespace help {
|
|
/**
|
|
* Permalink: http://dojotoolkit.org/api/1.9/dojox/help/_base.html
|
|
*
|
|
*
|
|
*/
|
|
interface _base {
|
|
}
|
|
/**
|
|
* Permalink: http://dojotoolkit.org/api/1.9/dojox/help/console.html
|
|
*
|
|
*
|
|
*/
|
|
interface console {
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
declare module "dojox/help/_base" {
|
|
var exp: dojox.help._base
|
|
export=exp;
|
|
}
|
|
declare module "dojox/help/console" {
|
|
var exp: dojox.help.console
|
|
export=exp;
|
|
}
|