Skip to content

Commit

Permalink
feat: provide symbols to be used for accessing private properties
Browse files Browse the repository at this point in the history
  • Loading branch information
alvis committed Oct 18, 2023
1 parent 2f6ef46 commit 70f5661
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions source/symbols.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* *** MIT LICENSE ***
* -------------------------------------------------------------------------
* This code may be modified and distributed under the MIT license.
* See the LICENSE file for details.
* -------------------------------------------------------------------------
*
* @summary Symbols used in the prototype
* @author Alvis HT Tang <alvis@hilbert.space>
* @license MIT
* @copyright Copyright (c) 2020 - All Rights Reserved.
* -------------------------------------------------------------------------
*/

export const $namespace = Symbol('namespace');
export const $tags = Symbol('tags');
export const $cause = Symbol('cause');
export const $meta = Symbol('meta');

0 comments on commit 70f5661

Please sign in to comment.