// -*- mode: typescript -*-
/**
 * @fileoverview
 * @author Taketoshi Aono
 */

/// <reference path="../typings/index.d.ts"/>


declare module 'es6-symbol' {
  interface SymbolInterface {
    (string): symbol;
    length: number;
    name: string;
    for(string): symbol;
    keyFor(string): symbol;
  }
  var Symbol: SymbolInterface;
  export default Symbol;
}
