MFML - v0.0.4
    Preparing search index...

    Requirements imposed on a type by allowTypes.

    interface TypeRequirements {
        allowedCategories?: boolean | string[];
        allowedOptions?: boolean | string[];
        allowedStyles?: boolean | string[];
        isStyleRequired?: boolean;
        requiredCategories?: boolean | string[];
    }
    Index

    Properties

    allowedCategories?: boolean | string[]

    The array of category names that a type allows, or true if any category is allowed.

    If empty or false then categories aren't allowed.

    ['one', 'many', 'few', 'other']
    
    false
    
    allowedOptions?: boolean | string[]

    The array of option names that a type allows, or true if any option is allowed.

    If empty or false then options aren't allowed.

    ['currencyDisplay', 'useGrouping', 'minimumIntegerDigits']
    
    false
    
    allowedStyles?: boolean | string[]

    The array of styles that a type allows, or true if any style is allowed.

    If empty or false then no styles are allowed.

    ['decimal', 'percent']
    
    false
    
    isStyleRequired?: boolean

    If true then style is always required and options and categories requirements are ignored.

    false
    
    requiredCategories?: boolean | string[]

    The array of categories that are required, or true if at least one category is required.

    ['other']
    
    false