Stub the parts of PyObjC I'm using (whee)

This commit is contained in:
Danielle McLean 2023-11-27 16:52:17 +11:00
parent 5a3ddd570d
commit 73972cd17e
Signed by: 00dani
GPG key ID: 52C059C3B22A753E
3 changed files with 106 additions and 0 deletions

View 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: ...