UNPKG

typescript-dotnet-core

Version:

A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.

17 lines (15 loc) 318 B
/*! * @author electricessence / https://github.com/electricessence/ * Licensing: MIT */ declare const enum TypeValue { Boolean = 'boolean', Number = 'number', String = 'string', Symbol = 'symbol', Object = 'object', Undefined = 'undefined', Function = 'function' } export default TypeValue;