Skip to content

Commit 22b4ca8

Browse files
committed
doc
1 parent 5139a7a commit 22b4ca8

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/generator.ts

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ import logger from "./shared/logger";
33
const fs = require("fs");
44
const path = require("path");
55

6+
/**
7+
*
8+
* @param {Array<File>} files An array of tokens generated after parsing the content of every file
9+
* @param {string} outputPath The location in which the function has to write the file with the deffinitions
10+
* of the snippets
11+
*/
612
export const generator = (files: Array<File>, outputPath: string): void => {
713
// scope will be html only for now
814
let json = Object();

src/parser.ts

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ import pathResolver from "./utils/path-resolver";
99
import { REGEX_SELECTORS } from "./utils/regexSelectors";
1010

1111
// TODO: Test in other OS (github actions)
12+
/**
13+
*
14+
* @param {IFIleData} data An array of files that can contain component or class definitions
15+
* @returns {File} An array filed of tokens that contains information about each component parsed
16+
*/
1217
export const parser = (data: Array<IFileData>): Array<File> => {
1318
let result: Array<File> = [],
1419
tmp: Array<Partial<File>> = []; // a temporal variable used for storing @Inputs/@Outputs declared on a parent class

0 commit comments

Comments
 (0)