Skip to content

Commit

Permalink
fix(symbols): tweak exports
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed Feb 14, 2022
1 parent e4e6a66 commit d31ab23
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/symbols.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
* @typedef {import("../types/api").UniqueSymbols} UniqueSymbols
*/

export const filename = Symbol('filename');
export const fullpath = Symbol('fullpath');

/**
* @type {UniqueSymbols}
* */
const symbols = {
pointer: Symbol('pointer'),
filename: Symbol('filename'),
fullpath: Symbol('fullpath'),
filename,
fullpath,
id: Symbol('id'),
titles: Symbol('titles'),
resolve: Symbol('resolve'),
Expand Down

0 comments on commit d31ab23

Please sign in to comment.