/
Andru196
/
NSwagClone
Обзор
Документация
Войти
/
Andru196
/
NSwagClone
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
1
Аналитика
Безопасность
master
src/NSwag.CodeGeneration.TypeScript/InjectionTokenType.cs
20 строк
757 B
Doug Bunting
Use latest GitHub URLs
24 июн 2019, 02:15
Не верифицирован
24 июн 2019, 02:15
4e94b9d
Код
Авторство
О чём код?
//----------------------------------------------------------------------- // <copyright file="InjectionTokenType.cs" company="NSwag"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/RicoSuter/NSwag/blob/master/LICENSE.md</license> // <author>Rico Suter, mail@rsuter.com</author> //----------------------------------------------------------------------- namespace NSwag.CodeGeneration.TypeScript { /// <summary>The Angular token type.</summary> public enum InjectionTokenType { /// <summary>Use the legacy/obsolete OpaqueToken (pre Angular 4).</summary> OpaqueToken, /// <summary>Use the new InjectionToken class (Angular 4+).</summary> InjectionToken } }