/**
* @namespace pulsar
*/
/**
* @namespace pulsar.tsdoc
*/
module pulsar.tsdoc
{
/**
* Interface Description Title.
* @interface
* @class pulsar.tsdoc.IInterface
* @classdesc Interface Description
*/
export interface IInterface
{
/**
* Interface Property Description
* @abstract
* @member {string} pulsar.tsdoc.IInterface#name
*/
name:string;
/**
* Interface Method Description
* @abstract
* @method pulsar.tsdoc.IInterface#methodToImplement
* @param {string} name Description
* @param {number} index Description
*/
methodToImplement( name:string , index:number):void;
}
}