Skip to content

Instantly share code, notes, and snippets.

{
"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",
@kherock
kherock / mini-css-extract-plugin-cleanup.js
Last active January 26, 2024 20:20
Remove empty CSS modules workaround
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) {
import { AutofillMonitor } from '@angular/cdk/text-field';
import { Directive, ElementRef, Optional, Self } from '@angular/core';
import {
AbstractControl,
DefaultValueAccessor,
RequiredValidator,
Validators,
} from '@angular/forms';
/**
// 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;