TSDOC

Source: Interface.ts

/**
 * @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;

	}

}
TSDOC Copyright ©2013 pcasaubon.
Documentation generated by JSDoc 3.2.0 on Mon Aug 12 2013 15:46:32 GMT+0200 (CEST) using the TSDoc template.