12 lines
405 B
Python
12 lines
405 B
Python
from _typeshed import Incomplete as Incomplete
|
|
|
|
class TaskQueue:
|
|
def push(self, *args, **kwargs) -> Incomplete: ...
|
|
def peek(self, *args, **kwargs) -> Incomplete: ...
|
|
def remove(self, *args, **kwargs) -> Incomplete: ...
|
|
def pop(self, *args, **kwargs) -> Incomplete: ...
|
|
def __init__(self, *argv, **kwargs) -> None: ...
|
|
|
|
class Task:
|
|
def __init__(self, *argv, **kwargs) -> None: ...
|