blob: 347250e10e85c42cbaa0cbd813775bd166f05cc4 (
plain) (
blame)
1
2
3
4
5
6
7
|
from typing import Any
from .Shadow import *
# Internal interface for IPython. Not further typed since it's not meant for end users.
def load_ipython_extension(ip: Any) -> None: ...
|