/**
 * Symbol类型
 * @author JunBin.Yang
 */
export type Symbol = symbol;

export const SymbolToString = (s: Symbol) => {
  return s.toString();
}