Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « AppKit « typings - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 185aeccfeb0de569db31b7b1d74ca1c7a157971d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

from __future__ import annotations

from typing import Any


class NSLocale:
    @classmethod
    def currentLocale(cls) -> Any: ...


class NSSound:
    @classmethod
    def alloc(cls) -> NSSound: ...
    def initWithContentsOfFile_byReference_(self, url: str, byref: bool) -> None: ...
    def play(self) -> None: ...