Skip to content

Commit

Permalink
Merge branch 'mini' into browser
Browse files Browse the repository at this point in the history
  • Loading branch information
bhsd-harry committed Dec 19, 2024
2 parents 445af61 + 1a1da58 commit fe9cdfc
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ import {
minConfig,
} from './util/constants';
import {tidy} from './util/string';
import type {Config, LintError, TokenTypes, Parser as ParserBase, Stage} from './base';
import type {
Config,
LintError,
TokenTypes,
Parser as ParserBase,
Stage,
AST,
} from './base';
import type {Title} from './lib/title';
import type {Token} from './internal';

Expand Down Expand Up @@ -130,4 +137,9 @@ Object.defineProperties(Parser, def);
Object.assign(typeof globalThis === 'object' ? globalThis : self, {Parser}); // eslint-disable-line es-x/no-global-this

export default Parser;
export type {Config, LintError, TokenTypes};
export type {
Config,
LintError,
TokenTypes,
AST,
};

0 comments on commit fe9cdfc

Please sign in to comment.