export function isTooManyConcurrentExportRequestsError()

in src/errors/TooManyConcurrentExportRequestsError.ts [17:22]


export function isTooManyConcurrentExportRequestsError(error: unknown): error is TooManyConcurrentExportRequestsError {
    return (
        Boolean(error) &&
        (error as TooManyConcurrentExportRequestsError).isTooManyConcurrentExportRequestsError === true
    );
}