proactive-deps
    Preparing search index...

    Type Alias GenericCheckDetails

    Generic check details type. For use when no other check type is applicable. This is a placeholder and should be replaced with a more specific type if possible. Can contain any number of custom properties.

    const genericCheckDetails: GenericCheckDetails = {
    type: 'generic',
    customProperty1: 'value1',
    customProperty2: 42,
    customProperty3: true,
    };
    type GenericCheckDetails = {
        type: "generic";
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    Properties

    type: "generic"

    The type of check, which is 'generic' in this case.