Skip to content

Commit

Permalink
update lume cli version, update typescript version
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Nov 7, 2023
1 parent 5ada536 commit 57094af
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 33 deletions.
2 changes: 1 addition & 1 deletion dist/Observable.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions dist/Observable.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/Observable.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/ejs/js/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ejs/js/app.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ export declare class FileScanner extends Observable {
export declare class FolderScanner extends FileScanner {
scanFolder(folder: string): Promise<FileComments[]>;
}
declare type Comment = {
type Comment = {
source: string;
content: CommentContent;
};
declare type CommentContent = Array<Tag | string>;
declare type Tag = {
type CommentContent = Array<Tag | string>;
type Tag = {
source: string;
tag: string;
type: JSDocTypeAST | undefined;
name: string | undefined;
description: string | undefined;
};
declare type JSDocTypeAST = Record<string, any>;
declare type FileComments = {
type JSDocTypeAST = Record<string, any>;
type FileComments = {
file: string;
comments: Comment[];
};
Expand All @@ -31,39 +31,39 @@ export declare class CommentAnalyzer {
private trackMethod;
private trackProperty;
}
export declare type PrimaryItemMeta = {
export type PrimaryItemMeta = {
file: string;
};
export declare type ClassMeta = PrimaryItemMeta & {
export type ClassMeta = PrimaryItemMeta & {
name: string;
description: string;
extends: string[];
abstract: boolean;
properties: Record<string, PropertyMeta>;
methods: Record<string, MethodMeta>;
};
export declare type ClassElementMeta = {
export type ClassElementMeta = {
access: 'public' | 'protected' | 'private';
};
export declare type PropertyMeta = ClassElementMeta & {
export type PropertyMeta = ClassElementMeta & {
name: string;
description?: string;
type?: JSDocTypeAST;
};
export declare type FunctionLikeMeta = {
export type FunctionLikeMeta = {
name: string;
description?: string;
params: Param[];
returns?: JSDocTypeAST;
};
export declare type FunctionMeta = PrimaryItemMeta & FunctionLikeMeta;
export declare type MethodMeta = ClassElementMeta & FunctionLikeMeta;
export declare type Param = {
export type FunctionMeta = PrimaryItemMeta & FunctionLikeMeta;
export type MethodMeta = ClassElementMeta & FunctionLikeMeta;
export type Param = {
name: string;
description?: string;
type?: JSDocTypeAST;
};
export declare type DocsMeta = {
export type DocsMeta = {
sourceFolder: string;
classes: Map<string, ClassMeta>;
functions: Map<string, FunctionMeta>;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 57094af

Please sign in to comment.