Skip to content

Commit

Permalink
linter warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
captain-torch committed Oct 3, 2022
1 parent a7e5f0b commit 75edb48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/output/themes/default/DefaultThemeRenderContext.ts
Expand Up @@ -46,7 +46,7 @@ function bind<F, L extends any[], R>(fn: (f: F, ...a: L) => R, first: F) {

export class DefaultThemeRenderContext {
options: Options;
private currentDepth: number = 0;
private currentDepth = 0;

constructor(private theme: DefaultTheme, options: Options) {
this.options = options;
Expand Down

0 comments on commit 75edb48

Please sign in to comment.