This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name" : "entitlements", | |
"type" : "complex", | |
"multiValued" : true, | |
"description" : "A list of entitlements for the User that represent a thing the User has.", | |
"required" : false, | |
"subAttributes" : [ | |
{ | |
"name" : "value", | |
"type" : "string", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const EMPTY_MODULES_CLEANUP_DEP_TYPES = new Set([ | |
'harmony side effect evaluation', | |
'import()', | |
'single entry', | |
]); | |
class SetMap extends Map { | |
add (key, value) { | |
const set = this.get(key); | |
if (set === undefined) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AutofillMonitor } from '@angular/cdk/text-field'; | |
import { Directive, ElementRef, Optional, Self } from '@angular/core'; | |
import { | |
AbstractControl, | |
DefaultValueAccessor, | |
RequiredValidator, | |
Validators, | |
} from '@angular/forms'; | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Type definitions for react-redux 4.4.0 | |
// Project: https://github.com/rackt/react-redux | |
// Definitions by: Qubo <https://github.com/tkqubo>, Sean Kelley <https://github.com/seansfkelley>, Kyle Herock <https://github.com/rockmacaca> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
// TypeScript Version: 2.1 | |
import * as React from 'react'; | |
import * as Redux from 'redux'; | |
export as namespace ReactRedux; |