16 lines
203 B
Python
16 lines
203 B
Python
|
# type: ignore
|
||
|
|
||
|
|
||
|
class Document:
|
||
|
def __getattr__(self, attr):
|
||
|
return lambda x: document[attr](x)
|
||
|
|
||
|
|
||
|
class Window:
|
||
|
def __getattr__(self, attr):
|
||
|
return lambda x: window[attr](x)
|
||
|
|
||
|
|
||
|
|
||
|
|