📚 JSDoc format

This commit is contained in:
ful1e5 2020-09-28 18:04:35 +05:30
parent ca5de2023f
commit 7d7d419806
3 changed files with 2 additions and 3 deletions

View file

@ -43,7 +43,9 @@ export class BitmapsGenerator {
/**
*
* @param inputs `BitmapsGenerator` Class's object arguments.
*
* @param themeName name of the bitmaps directory.
*
* @param bitmapsDir `absolute` or `relative` path, Where cursors `.png` files generated.
*/
constructor(

View file

@ -44,7 +44,6 @@ export default class ColoredSvgGenerator {
/**
*
* Generate `static` cursors .svg file according to `Theme Colors`.
*
*/
public getColoredStaticCursors(): Cursors {
const cursors: Cursors = {};
@ -68,7 +67,6 @@ export default class ColoredSvgGenerator {
/**
*
* Generate `animated` cursors .svg file according to `Theme Colors`.
*
*/
public getColoredAnimatedCursors(): Cursors {
const cursors: Cursors = {};

View file

@ -37,7 +37,6 @@ export default class SvgDirectoryParser {
}
/**
*
*
* Return all animated cursors absolute paths from `svgDir/animated` directory.
*/