diff --git a/src/impress.ts b/src/impress.ts index c299c4d..dba1d1d 100644 --- a/src/impress.ts +++ b/src/impress.ts @@ -92,9 +92,19 @@ * @param {number} rotation.z The rotation in degrees around the z-axis * @returns {promise} This promise resolves as a boolean, indicating success or failure */ - var moveTo = ( coordinates: object, rotation: object ): Promise => new Promise( ( resolve, reject ) => { - resolve( true ); - } ); + var moveTo = ( coordinates: object, rotation: object ): Promise => { + return new Promise( ( resolve, reject ) => { + + } ); + } + + /** + * You can use this function to get all registered impress steps. + * @returns {Array} + */ + const getSteps = ():Array => { + return []; + } return { init