Documentation
    Preparing search index...

    Type Alias ConsoleApiName

    Keep references on console methods to avoid triggering patched behaviors

    NB: in some setup, console could already be patched by another SDK. In this case, some display messages can be sent by the other SDK but we should be safe from infinite loop nonetheless.

    type ConsoleApiName = {
        debug: "debug";
        error: "error";
        info: "info";
        log: "log";
        warn: "warn";
    }
    Index

    Properties

    Properties

    debug: "debug" = 'debug'
    error: "error" = 'error'
    info: "info" = 'info'
    log: "log" = 'log'
    warn: "warn" = 'warn'