Stub the parts of PyObjC I'm using (whee)
This commit is contained in:
parent
5a3ddd570d
commit
73972cd17e
3 changed files with 106 additions and 0 deletions
9
stubs/Foundation/__init__.pyi
Normal file
9
stubs/Foundation/__init__.pyi
Normal file
|
@ -0,0 +1,9 @@
|
|||
from typing import Type
|
||||
|
||||
class CGSize:
|
||||
width: float
|
||||
height: float
|
||||
|
||||
class NSMutableDictionary(dict[str, object]):
|
||||
@classmethod
|
||||
def dictionary(cls: Type[NSMutableDictionary]) -> NSMutableDictionary: ...
|
Loading…
Add table
Add a link
Reference in a new issue